From bd506a8199549a1339bf1365f827e18310fd4b53 Mon Sep 17 00:00:00 2001 From: Nolwen <–huet@imacs.polytechnique.fr> Date: Wed, 23 Nov 2022 21:18:07 +0100 Subject: [PATCH] Fix missing variable python_version for skdecide install in release.yml This fixes a bug introduced by a947139 --- .github/workflows/release.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 1318ce5302..2124c67a56 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -378,6 +378,7 @@ jobs: - name: Install scikit-decide run: | + python_version=${{ matrix.python-version }} wheelfile=$(ls ./wheels/scikit_decide*-cp${python_version/\./}-*win*.whl) pip install ${wheelfile}[all] @@ -461,6 +462,7 @@ jobs: - name: Install scikit-decide run: | + python_version=${{ matrix.python-version }} wheelfile=$(ls ./wheels/scikit_decide*-cp${python_version/\./}-*macos*.whl) pip install ${wheelfile}[all] @@ -542,6 +544,7 @@ jobs: - name: Install scikit-decide run: | + python_version=${{ matrix.python-version }} wheelfile=$(ls ./wheels/scikit_decide*-cp${python_version/\./}-*manylinux*.whl) pip install ${wheelfile}[all] @@ -676,6 +679,7 @@ jobs: - name: Install scikit-decide run: | + python_version=${{ matrix.python-version }} wheelfile=$(ls ./wheels/scikit_decide*-cp${python_version/\./}-*manylinux*.whl) pip install ${wheelfile}[all]