Skip to content

Commit adc38d8

Browse files
committed
added support for 3.11
1 parent aaab22a commit adc38d8

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/experimental.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
- name: Setup Python
2626
uses: actions/setup-python@v2
2727
with:
28-
python-version: 3.10-dev
28+
python-version: 3.11-dev
2929
- name: Install requirements
3030
run: |
3131
pip install -U -r requirements-dev.txt

.github/workflows/test.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
fail-fast: false
1717
matrix:
1818
os: [ubuntu-latest, macos-latest, windows-latest]
19-
python: [3.6, 3.7, 3.8, 3.9]
19+
python: [3.6, 3.7, 3.8, 3.9, 3.10]
2020
steps:
2121
- uses: actions/checkout@v2
2222
- name: Setup Python
@@ -25,9 +25,9 @@ jobs:
2525
python-version: ${{ matrix.python }}
2626
- name: Install requirements
2727
run: |
28-
pip install -U -r requirements-dev.txt
29-
pip install -U -r requirements.txt
30-
pip install coveralls
28+
python -m pip install -U -r requirements-dev.txt
29+
python -m pip install -U -r requirements.txt
30+
python -m pip install coveralls
3131
- name: Run Tox
3232
# Run tox using the version of Python in `PATH`
3333
run: tox -e py

0 commit comments

Comments
 (0)