Skip to content

Commit

Permalink
FIX-#2614: Up python version for test jobs (#2615)
Browse files Browse the repository at this point in the history
Signed-off-by: Igoshev, Yaroslav <yaroslav.igoshev@intel.com>
  • Loading branch information
YarShev authored Feb 3, 2021
1 parent 3e1258f commit a5417e8
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 14 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ jobs:
with:
activate-environment: modin
environment-file: environment.yml
python-version: 3.6
python-version: 3.7
channel-priority: strict
use-only-tar-bz2: true # IMPORTANT: This needs to be set for caching to work properly!
- name: Conda environment
Expand Down Expand Up @@ -168,7 +168,7 @@ jobs:
with:
activate-environment: modin
environment-file: environment.yml
python-version: 3.6
python-version: 3.7
channel-priority: strict
use-only-tar-bz2: true # IMPORTANT: This needs to be set for caching to work properly!
- name: Conda environment
Expand Down Expand Up @@ -201,7 +201,7 @@ jobs:
env:
MODIN_MEMORY: 1000000000
MODIN_TEST_DATASET_SIZE: "small"
name: Test ${{ matrix.backend }} backend, Python 3.6
name: Test ${{ matrix.backend }} backend, Python 3.7
steps:
- uses: actions/checkout@v2
with:
Expand All @@ -210,7 +210,7 @@ jobs:
with:
activate-environment: modin
environment-file: environment.yml
python-version: 3.6
python-version: 3.7
channel-priority: strict
use-only-tar-bz2: true # IMPORTANT: This needs to be set for caching to work properly!
- name: Conda environment
Expand Down Expand Up @@ -344,7 +344,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.6", "3.7", "3.8"]
python-version: ["3.7", "3.8"]
engine: ["python", "ray", "dask"]
env:
MODIN_ENGINE: ${{matrix.engine}}
Expand Down Expand Up @@ -472,7 +472,7 @@ jobs:
runs-on: windows-latest
strategy:
matrix:
python-version: ["3.6", "3.7", "3.8"]
python-version: ["3.7", "3.8"]
engine: ["ray", "dask"]
part: ["DataFrame", 3]
env:
Expand Down Expand Up @@ -554,7 +554,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.6", "3.7", "3.8"]
python-version: ["3.7", "3.8"]
env:
MODIN_BACKEND: pyarrow
MODIN_EXPERIMENTAL: "True"
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
with:
activate-environment: modin
environment-file: environment.yml
python-version: 3.6
python-version: 3.7
channel-priority: strict
use-only-tar-bz2: true # IMPORTANT: This needs to be set for caching to work properly!
- name: Conda environment
Expand Down Expand Up @@ -42,7 +42,7 @@ jobs:
env:
MODIN_MEMORY: 1000000000
MODIN_TEST_DATASET_SIZE: "small"
name: Test ${{ matrix.backend }} backend, Python 3.6
name: Test ${{ matrix.backend }} backend, Python 3.7
steps:
- uses: actions/checkout@v2
with:
Expand All @@ -51,7 +51,7 @@ jobs:
with:
activate-environment: modin
environment-file: environment.yml
python-version: 3.6
python-version: 3.7
channel-priority: strict
use-only-tar-bz2: true # IMPORTANT: This needs to be set for caching to work properly!
- name: Conda environment
Expand Down Expand Up @@ -130,7 +130,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.6", "3.7", "3.8"]
python-version: ["3.7", "3.8"]
engine: ["python", "ray", "dask"]
env:
MODIN_ENGINE: ${{matrix.engine}}
Expand Down Expand Up @@ -195,7 +195,7 @@ jobs:
runs-on: windows-latest
strategy:
matrix:
python-version: ["3.6", "3.7", "3.8"]
python-version: ["3.7", "3.8"]
engine: ["ray", "dask"]
part: ["DataFrame", 3]
env:
Expand Down Expand Up @@ -276,7 +276,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.6", "3.7", "3.8"]
python-version: ["3.7", "3.8"]
env:
MODIN_BACKEND: pyarrow
MODIN_EXPERIMENTAL: "True"
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,5 +63,5 @@ def is_pure(self):
"remote": remote_deps,
"all": all_deps,
},
python_requires=">=3.6.1",
python_requires=">=3.7.1",
)

0 comments on commit a5417e8

Please sign in to comment.