Skip to content

Commit

Permalink
added support for 3.11
Browse files Browse the repository at this point in the history
  • Loading branch information
fametrano committed Feb 9, 2022
1 parent aaab22a commit adc38d8
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/experimental.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
- name: Setup Python
uses: actions/setup-python@v2
with:
python-version: 3.10-dev
python-version: 3.11-dev
- name: Install requirements
run: |
pip install -U -r requirements-dev.txt
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python: [3.6, 3.7, 3.8, 3.9]
python: [3.6, 3.7, 3.8, 3.9, 3.10]
steps:
- uses: actions/checkout@v2
- name: Setup Python
Expand All @@ -25,9 +25,9 @@ jobs:
python-version: ${{ matrix.python }}
- name: Install requirements
run: |
pip install -U -r requirements-dev.txt
pip install -U -r requirements.txt
pip install coveralls
python -m pip install -U -r requirements-dev.txt
python -m pip install -U -r requirements.txt
python -m pip install coveralls
- name: Run Tox
# Run tox using the version of Python in `PATH`
run: tox -e py
Expand Down

0 comments on commit adc38d8

Please sign in to comment.