Skip to content

Commit 7e15874

Browse files
authored
[FSSDK-9098]: Updates minimum python version for CI Tests to 3.8 (#426)
* updating minimum python version for CI * Adding pypy3.10
1 parent 6bc3454 commit 7e15874

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

.github/workflows/python.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,10 @@ jobs:
2929
runs-on: ubuntu-latest
3030
steps:
3131
- uses: actions/checkout@v3
32-
- name: Set up Python 3.10
33-
uses: actions/setup-python@v3
32+
- name: Set up Python 3.11
33+
uses: actions/setup-python@v4
3434
with:
35-
python-version: '3.10'
35+
python-version: '3.11'
3636
# flake8 version should be same as the version in requirements/test.txt
3737
# to avoid lint errors on CI
3838
- name: pip install flak8
@@ -64,11 +64,11 @@ jobs:
6464
strategy:
6565
fail-fast: false
6666
matrix:
67-
python-version: ["pypy-3.7-v7.3.5", "3.7", "3.8", "3.9", "3.10"]
67+
python-version: ["pypy-3.10-v7.3.12", "3.8", "3.9", "3.10", "3.11"]
6868
steps:
6969
- uses: actions/checkout@v3
7070
- name: Set up Python ${{ matrix.python-version }}
71-
uses: actions/setup-python@v3
71+
uses: actions/setup-python@v4
7272
with:
7373
python-version: ${{ matrix.python-version }}
7474
- name: Install dependencies
@@ -84,11 +84,11 @@ jobs:
8484
strategy:
8585
fail-fast: false
8686
matrix:
87-
python-version: ["3.7", "3.8", "3.9", "3.10"]
87+
python-version: ["3.8", "3.9", "3.10", "3.11"]
8888
steps:
8989
- uses: actions/checkout@v3
9090
- name: Set up Python ${{ matrix.python-version }}
91-
uses: actions/setup-python@v3
91+
uses: actions/setup-python@v4
9292
with:
9393
python-version: ${{ matrix.python-version }}
9494
- name: Install dependencies

0 commit comments

Comments
 (0)