Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 8 additions & 7 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,20 +11,21 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.6", "3.7", "3.8", "3.9", "3.10-dev"]
python-version: ["3.6", "3.7", "3.8", "3.9", "3.10", "3.11-dev"]
os: [ubuntu-latest, macos-latest, windows-latest]
exclude:
# TODO Fix these versions on Windows
- {os: windows-latest, python-version: "3.7"}
- {os: windows-latest, python-version: "3.8"}
- {os: windows-latest, python-version: "3.9"}
- {os: windows-latest, python-version: "3.10-dev"}
- {os: windows-latest, python-version: "3.10"}
- {os: windows-latest, python-version: "3.11-dev"}

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}

Expand All @@ -34,7 +35,7 @@ jobs:
echo "::set-output name=dir::$(pip cache dir)"

- name: Cache
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: ${{ steps.pip-cache.outputs.dir }}
key:
Expand All @@ -44,9 +45,9 @@ jobs:

- name: Install dependencies
run: |
python -m pip install -U pip
python -m pip install --upgrade pip
python -m pip install -e .
pip install -r tests/requirements.txt
python -m pip install -r tests/requirements.txt

- name: Test
run: |
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# and then run "tox" from this directory.

[tox]
envlist = py36, py37, py38, py39, py310
envlist = py36, py37, py38, py39, py310, py311

[testenv]
deps =
Expand Down