Skip to content

Commit 35fadb9

Browse files
committed
Fix Python 3.10 tests
1 parent 073d352 commit 35fadb9

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,8 @@ jobs:
2626
strategy:
2727
max-parallel: 4
2828
matrix:
29-
python-version: [3.6, 3.7, 3.8, 3.9, 3.10]
29+
# Note: We need to quote '3.10' otherwise it's interpreted as as number, e.g. 3.1
30+
python-version: [3.6, 3.7, 3.8, 3.9, '3.10']
3031
steps:
3132
- uses: actions/checkout@v1
3233
name: "Checkout branch"

0 commit comments

Comments
 (0)