summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorMathieu Kniewallner <mathieu.kniewallner@gmail.com>2021-10-05 21:43:06 +0200
committerMathieu Kniewallner <mathieu.kniewallner@gmail.com>2021-10-05 21:43:06 +0200
commit616f710796058719b0ad1a397bfe33b3f99fc6db (patch)
treef6604724988bd39c7518a503e3937158dfb7ff68 /.github
parent995e016b9d888fea02bedeb5be8ea7f01b694b58 (diff)
downloadisort-616f710796058719b0ad1a397bfe33b3f99fc6db.tar.gz
chore(ci): run tests against Python 3.10
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/test.yml7
1 files changed, 1 insertions, 6 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
index 892d8998..31e9d4dd 100644
--- a/.github/workflows/test.yml
+++ b/.github/workflows/test.yml
@@ -8,7 +8,7 @@ jobs:
strategy:
fail-fast: false
matrix:
- python-version: ["3.6", "3.7", "3.8", "3.9", "3.10.0-rc.2"]
+ python-version: ["3.6", "3.7", "3.8", "3.9", "3.10"]
os: [ubuntu-latest, ubuntu-18.04, macos-latest, windows-latest]
steps:
@@ -53,11 +53,6 @@ jobs:
python -m pip install --upgrade pip
python -m pip install --upgrade poetry
- # New poetry installer doesn't work well with Python 3.10 (see https://github.com/python-poetry/poetry/issues/4210).
- - name: Use legacy poetry installer
- if: startsWith(matrix.python-version, '3.10')
- run: poetry config experimental.new-installer false
-
- name: Install dependencies
run: poetry install