From 2b17f4bea73330895c7d6ae42b4e9a2376216bf7 Mon Sep 17 00:00:00 2001 From: Guillaume Maze Date: Fri, 10 Feb 2023 14:36:23 +0100 Subject: [PATCH] fix env --- .github/workflows/tests.yml | 8 ++++---- requirements.txt | 16 ++++++++-------- 2 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index b12b4d3..afc9cac 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -36,7 +36,7 @@ jobs: # CI tests for environments with requirements in pinned versions, using Scikit-learn backend # All commits must pass this - name: Scikit - Pinned - Py${{matrix.python-version}} - ${{ matrix.os }} + name: Scikit-Learn - Pinned - Py${{matrix.python-version}} - ${{ matrix.os }} needs: detect-ci-trigger runs-on: ${{ matrix.os }} if: needs.detect-ci-trigger.outputs.triggered == 'false' @@ -57,7 +57,7 @@ jobs: - name: Set environment variables run: | - echo "CONDA_ENV_FILE=ci/requirements/py${{matrix.python-version}}-pinned-scikitlearn.yml" >> $GITHUB_ENV + echo "CONDA_ENV_FILE=ci/requirements/py${{matrix.python-version}}-all-pinned-scikitlearn.yml" >> $GITHUB_ENV echo "PYTHON_VERSION=${{ matrix.python-version }}" >> $GITHUB_ENV - name: Setup micromamba @@ -106,7 +106,7 @@ jobs: # CI tests for environments with requirements in pinned versions, using Dask-ML backend # All commits must pass this - name: DaskML - Pinned - Py${{matrix.python-version}} - ${{ matrix.os }} + name: Dask-ML - Pinned - Py${{matrix.python-version}} - ${{ matrix.os }} needs: detect-ci-trigger runs-on: ${{ matrix.os }} if: needs.detect-ci-trigger.outputs.triggered == 'false' @@ -127,7 +127,7 @@ jobs: - name: Set environment variables run: | - echo "CONDA_ENV_FILE=ci/requirements/py${{matrix.python-version}}-pinned-daskml.yml" >> $GITHUB_ENV + echo "CONDA_ENV_FILE=ci/requirements/py${{matrix.python-version}}-all-pinned-daskml.yml" >> $GITHUB_ENV echo "PYTHON_VERSION=${{ matrix.python-version }}" >> $GITHUB_ENV - name: Setup micromamba diff --git a/requirements.txt b/requirements.txt index a307d5c..18c3966 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,8 +1,8 @@ -scipy>=1.1.0 -xarray>=0.12.1 -scikit-learn>=0.21 -ipython>=5.0.0 -numpydoc>=0.6.0 -netCDF4>=1.3.1 -dask>=0.16.0 -toolz>=0.8.2 \ No newline at end of file +scipy>=1.8.0 +xarray>=2022.3.0 +scikit-learn>=1.2.1 +ipython>=8.3.0 +netCDF4>=1.5.8 +dask>=2022.05.0 +toolz>=0.8.2 +numpydoc>=0.6.0 \ No newline at end of file