Skip to content

Commit

Permalink
[FSSDK-9098]: Updates minimum python version for CI Tests to 3.8 (#426)
Browse files Browse the repository at this point in the history
* updating minimum python version for CI

* Adding pypy3.10
  • Loading branch information
yasirfolio3 committed Jun 26, 2023
1 parent 6bc3454 commit 7e15874
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.10
uses: actions/setup-python@v3
- name: Set up Python 3.11
uses: actions/setup-python@v4
with:
python-version: '3.10'
python-version: '3.11'
# flake8 version should be same as the version in requirements/test.txt
# to avoid lint errors on CI
- name: pip install flak8
Expand Down Expand Up @@ -64,11 +64,11 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["pypy-3.7-v7.3.5", "3.7", "3.8", "3.9", "3.10"]
python-version: ["pypy-3.10-v7.3.12", "3.8", "3.9", "3.10", "3.11"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
Expand All @@ -84,11 +84,11 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10"]
python-version: ["3.8", "3.9", "3.10", "3.11"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
Expand Down

0 comments on commit 7e15874

Please sign in to comment.