Skip to content

Commit d57b27d

Browse files
change py version used
Signed-off-by: Labanya Mukhopadhyay <labanya.mukhopadhyay@snowflake.com>
1 parent 511c4a1 commit d57b27d

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.github/workflows/daily_modin_precommit_py311_py312.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
- name: Set up Python
2525
uses: actions/setup-python@v4
2626
with:
27-
python-version: '3.11'
27+
python-version: '3.9'
2828
- name: Display Python version
2929
run: python -c "import sys; import os; print(\"\n\".join(os.environ[\"PATH\"].split(os.pathsep))); print(sys.version); print(sys.executable);"
3030
- name: Upgrade setuptools and pip
@@ -47,7 +47,7 @@ jobs:
4747
- name: Setup Python
4848
uses: actions/setup-python@v4
4949
with:
50-
python-version: 3.11
50+
python-version: 3.9
5151
- name: Install protoc
5252
shell: bash
5353
run: .github/scripts/install_protoc.sh
@@ -94,7 +94,7 @@ jobs:
9494
- name: Set up Python
9595
uses: actions/setup-python@v4
9696
with:
97-
python-version: 3.11
97+
python-version: 3.9
9898
- name: Decrypt parameters.py
9999
shell: bash
100100
run: .github/scripts/decrypt_parameters.sh
@@ -429,7 +429,7 @@ jobs:
429429
- name: Set up Python
430430
uses: actions/setup-python@v4
431431
with:
432-
python-version: '3.11'
432+
python-version: '3.9'
433433
- name: Display Python version
434434
run: python -c "import sys; print(sys.version)"
435435
- name: Install protoc
@@ -480,7 +480,7 @@ jobs:
480480
- name: Setup Python
481481
uses: actions/setup-python@v4
482482
with:
483-
python-version: '3.11'
483+
python-version: '3.9'
484484
- name: Upgrade setuptools and pip
485485
run: python -m pip install -U setuptools pip
486486
- name: Install tox
File renamed without changes.

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ commands =
106106
snowparkpandasnotdoctest: {env:MODIN_PYTEST_CMD} --durations=20 -m "{env:SNOWFLAKE_TEST_TYPE}" {posargs:} {env:SNOW_1314507_WORKAROUND_RERUN_FLAGS} tests/unit/modin tests/integ/modin tests/integ/test_df_to_snowpark_pandas.py
107107
# This one only run doctest but we still need to include the tests folder to let tests/conftest.py to mark the doctest files for us
108108
snowparkpandasdoctest: {env:MODIN_PYTEST_CMD} --durations=20 -m "{env:SNOWFLAKE_TEST_TYPE}" {posargs:} src/snowflake/snowpark/modin/ tests/unit/modin
109-
# This one is used by daily_modin_precommit.yml
109+
# This one is used by daily_modin_precommit_py39_py310.yml
110110
snowparkpandasdailynotdoctest: {env:MODIN_PYTEST_DAILY_CMD} --durations=20 -m "{env:SNOWFLAKE_TEST_TYPE}" {posargs:} {env:SNOW_1314507_WORKAROUND_RERUN_FLAGS} tests/unit/modin tests/integ/modin tests/integ/test_df_to_snowpark_pandas.py
111111
# This one is only called by jenkins job and the only difference from `snowparkpandasnotdoctest` is that it uses
112112
# MODIN_PYTEST_NO_COV_CMD instead of MODIN_PYTEST_CMD

0 commit comments

Comments
 (0)