Skip to content

Commit 654a186

Browse files
authored
Update Python versions in CI/CD pipeline (#62)
1 parent b7f7cdc commit 654a186

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/main.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
- ubuntu-latest
1717
- macos-latest
1818
- windows-latest
19-
python-version: [ "3.6", "3.7", "3.8", "3.9" ] # "3.10" -- currently disabled
19+
python-version: [ "3.7", "3.8", "3.9", "3.10", "3.11" ]
2020

2121
steps:
2222
- uses: actions/checkout@v2
@@ -35,13 +35,13 @@ jobs:
3535
run: pytest --color=yes --cov=csaps --cov-report=term
3636

3737
- name: Coveralls
38-
if: ${{ matrix.platform == 'ubuntu-latest' && matrix.python-version == '3.9' }}
38+
if: ${{ matrix.platform == 'ubuntu-latest' && matrix.python-version == '3.11' }}
3939
uses: AndreMiras/coveralls-python-action@develop
4040
with:
4141
parallel: false
4242

4343
- name: flake8 Static Analysis
44-
if: ${{ matrix.platform == 'ubuntu-latest' && matrix.python-version == '3.9' }}
44+
if: ${{ matrix.platform == 'ubuntu-latest' && matrix.python-version == '3.11' }}
4545
run: flake8 csaps/ tests/ setup.py
4646

4747
docs:
@@ -51,7 +51,7 @@ jobs:
5151
- uses: actions/checkout@v2
5252
- uses: actions/setup-python@v2
5353
with:
54-
python-version: 3.9
54+
python-version: "3.11"
5555

5656
- name: Install dependencies
5757
run: |

0 commit comments

Comments
 (0)