Skip to content

Commit b9b9bf9

Browse files
joshmoorejakirkham
andauthored
Activate Py 3.10 builds (#1027)
* Activate Py 3.10 and 3.11 beta * Fix quotes of versions * Also quote exclusion Co-authored-by: jakirkham <[email protected]> * Try explicit beta1 * Use "beta.1" see versions file: https://github.com/actions/python-versions/blob/main/versions-manifest.json * Migrate to setup-python * Remove 3.11 Co-authored-by: jakirkham <[email protected]>
1 parent 3078173 commit b9b9bf9

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

.github/workflows/python-package.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,13 @@ jobs:
1515
runs-on: ubuntu-latest
1616
strategy:
1717
matrix:
18-
python-version: [3.7, 3.8, 3.9]
18+
python-version: ['3.7', '3.8', '3.9', '3.10']
1919
numpy_version: ['!=1.21.0', '==1.17.*']
2020
exclude:
2121
- python-version: 3.9
2222
numpy_version: '==1.17.*'
23+
- python-version: '3.10'
24+
numpy_version: '==1.17.*'
2325
services:
2426
redis:
2527
image: redis

.github/workflows/windows-testing.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
strategy:
1717
fail-fast: True
1818
matrix:
19-
python-version: ["3.8", "3.9"]
19+
python-version: ['3.8', '3.9', '3.10']
2020
steps:
2121
- uses: actions/checkout@v2
2222
with:

0 commit comments

Comments
 (0)