Skip to content

Commit c218be2

Browse files
committed
Use Python3.11 beta 5 in CI instead of beta 4
1 parent 4adfe2f commit c218be2

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/pythonpackage.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
strategy:
99
matrix:
1010
os: [windows-latest, ubuntu-latest, macos-latest]
11-
python-version: ["3.6", "3.7", "3.8", "3.9", "3.10", "3.11.0-beta.4"]
11+
python-version: ["3.6", "3.7", "3.8", "3.9", "3.10", "3.11.0-beta.5"]
1212
defaults:
1313
run:
1414
shell: bash
@@ -36,12 +36,12 @@ jobs:
3636
source $VENV
3737
make typecheck
3838
- name: Test with pytest (with coverage)
39-
if: matrix.python-version != '3.11.0-beta.4'
39+
if: matrix.python-version != '3.11.0-beta.5'
4040
run: |
4141
source $VENV
4242
pytest tests -v --cov=./rich --cov-report=xml:./coverage.xml --cov-report term-missing
4343
- name: Test with pytest (no coverage)
44-
if: matrix.python-version == '3.11.0-beta.4'
44+
if: matrix.python-version == '3.11.0-beta.5'
4545
run: |
4646
source $VENV
4747
pytest tests -v

0 commit comments

Comments
 (0)