Skip to content

Commit

Permalink
TEST-#0000: Try to run CI with python 3.10
Browse files Browse the repository at this point in the history
Signed-off-by: Anatoly Myachev <[email protected]>
  • Loading branch information
anmyachev committed May 27, 2024
1 parent 29861e6 commit d7e5b82
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .github/actions/mamba-env/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion .github/actions/python-only/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci-required.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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"
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -453,7 +453,7 @@ jobs:
os:
- ubuntu
- windows
python-version: ["3.9"]
python-version: ["3.10"]
execution:
- name: ray
shell-ex: "python -m pytest"
Expand Down Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/fuzzydata-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion .readthedocs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,5 +67,5 @@ def make_distribution(self):
"spreadsheet": spreadsheet_deps,
"all": all_deps,
},
python_requires=">=3.9",
python_requires=">=3.10",
)

0 comments on commit d7e5b82

Please sign in to comment.