From d7e5b82c7709b2c8e11a1f71f70b93a97e548eab Mon Sep 17 00:00:00 2001 From: Anatoly Myachev Date: Mon, 27 May 2024 12:57:07 +0200 Subject: [PATCH] TEST-#0000: Try to run CI with python 3.10 Signed-off-by: Anatoly Myachev --- .github/actions/mamba-env/action.yml | 2 +- .github/actions/python-only/action.yml | 2 +- .github/workflows/ci-required.yml | 2 +- .github/workflows/ci.yml | 10 +++++----- .github/workflows/fuzzydata-test.yml | 2 +- .readthedocs.yaml | 2 +- setup.py | 2 +- 7 files changed, 11 insertions(+), 11 deletions(-) diff --git a/.github/actions/mamba-env/action.yml b/.github/actions/mamba-env/action.yml index d7abd727b33..bbbd284a2e9 100644 --- a/.github/actions/mamba-env/action.yml +++ b/.github/actions/mamba-env/action.yml @@ -3,7 +3,7 @@ description: "Prepare the environment to run Modin" inputs: python-version: description: "Python version to install" - default: "3.9" + default: "3.10" environment-file: description: "Conda environment yml" required: true diff --git a/.github/actions/python-only/action.yml b/.github/actions/python-only/action.yml index 128519ba32b..6576d0d8da1 100644 --- a/.github/actions/python-only/action.yml +++ b/.github/actions/python-only/action.yml @@ -3,7 +3,7 @@ description: "Prepare the environment to run simple tasks" inputs: python-version: description: "Python version to install" - default: "3.9.x" + default: "3.10.x" runs: using: "composite" diff --git a/.github/workflows/ci-required.yml b/.github/workflows/ci-required.yml index f575945cd85..c66ad448a11 100644 --- a/.github/workflows/ci-required.yml +++ b/.github/workflows/ci-required.yml @@ -28,7 +28,7 @@ jobs: fetch-depth: 1 - uses: actions/setup-python@v5 with: - python-version: "3.9.x" + python-version: "3.10.x" architecture: "x64" cache: "pip" cache-dependency-path: '**/requirements-doc.txt' diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 68ea8eaac3e..27444ad7501 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -130,7 +130,7 @@ jobs: execution: [BaseOnPython] env: MODIN_TEST_DATASET_SIZE: "small" - name: Test ${{ matrix.execution }} execution, Python 3.9 + name: Test ${{ matrix.execution }} execution, Python 3.10 steps: - uses: actions/checkout@v4 - uses: ./.github/actions/mamba-env @@ -248,7 +248,7 @@ jobs: shell: bash -l {0} strategy: matrix: - python-version: ["3.9"] + python-version: ["3.10"] unidist-backend: ["mpi"] env: MODIN_ENGINE: "Unidist" @@ -320,7 +320,7 @@ jobs: os: - ubuntu - windows - python-version: ["3.9"] + python-version: ["3.10"] engine: ${{ fromJSON( github.event_name == 'push' && '["python", "ray", "dask"]' || needs.execution-filter.outputs.engines ) }} test_task: - group_1 @@ -453,7 +453,7 @@ jobs: os: - ubuntu - windows - python-version: ["3.9"] + python-version: ["3.10"] execution: - name: ray shell-ex: "python -m pytest" @@ -617,7 +617,7 @@ jobs: shell: bash -l {0} strategy: matrix: - python-version: ["3.9"] + python-version: ["3.10"] engine: ["ray", "dask"] env: MODIN_EXPERIMENTAL: "True" diff --git a/.github/workflows/fuzzydata-test.yml b/.github/workflows/fuzzydata-test.yml index c9b2b2a4a29..b0834b05497 100644 --- a/.github/workflows/fuzzydata-test.yml +++ b/.github/workflows/fuzzydata-test.yml @@ -30,7 +30,7 @@ jobs: shell: bash -l {0} strategy: matrix: - python-version: ["3.9"] + python-version: ["3.10"] engine: ["ray", "dask"] steps: - uses: actions/checkout@v4 diff --git a/.readthedocs.yaml b/.readthedocs.yaml index 7807bd06405..2fab49c2aed 100644 --- a/.readthedocs.yaml +++ b/.readthedocs.yaml @@ -9,7 +9,7 @@ version: 2 build: os: ubuntu-20.04 tools: - python: "3.9" + python: "3.10" # Build documentation in the docs/ directory with Sphinx sphinx: diff --git a/setup.py b/setup.py index 6134f0ec6fc..96233438e7c 100644 --- a/setup.py +++ b/setup.py @@ -67,5 +67,5 @@ def make_distribution(self): "spreadsheet": spreadsheet_deps, "all": all_deps, }, - python_requires=">=3.9", + python_requires=">=3.10", )