Skip to content

Commit 698d5c8

Browse files
committed
Test and build wheels on 3.10
1 parent 28f0b25 commit 698d5c8

File tree

5 files changed

+14
-12
lines changed

5 files changed

+14
-12
lines changed

.github/workflows/docker/shared.env

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
PYTHON_VERSIONS=(
2+
cp310-cp310
23
cp39-cp39
34
cp38-cp38
45
cp37-cp37m

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
runs-on: ${{ matrix.os }}
2929
strategy:
3030
matrix:
31-
python: [ 3.7, 3.9 ]
31+
python: [ 3.7, "3.10" ]
3232
os: [ macos-latest, ubuntu-latest, windows-latest ]
3333
defaults:
3434
run:

.github/workflows/wheels.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
runs-on: macos-latest
1616
strategy:
1717
matrix:
18-
python: [3.7, 3.8, 3.9]
18+
python: [3.7, 3.8, 3.9, "3.10"]
1919
steps:
2020
- name: Checkout
2121
uses: actions/checkout@v2
@@ -54,7 +54,7 @@ jobs:
5454
# runs-on: windows-latest
5555
# strategy:
5656
# matrix:
57-
# python: [3.7, 3.8, 3.9]
57+
# python: [3.7, 3.8, 3.9, "3.10"]
5858
# wordsize: [64]
5959
# steps:
6060
# - name: Checkout
@@ -152,7 +152,7 @@ jobs:
152152
runs-on: macos-latest
153153
strategy:
154154
matrix:
155-
python: [3.7, 3.8, 3.9]
155+
python: [3.7, 3.8, 3.9, "3.10"]
156156
steps:
157157
- name: Download wheels
158158
uses: actions/download-artifact@v2
@@ -174,7 +174,7 @@ jobs:
174174
# runs-on: windows-latest
175175
# strategy:
176176
# matrix:
177-
# python: [3.7, 3.8, 3.9]
177+
# python: [3.7, 3.8, 3.9, "3.10"]
178178
# wordsize: [64]
179179
# steps:
180180
# - name: Download wheels
@@ -199,7 +199,7 @@ jobs:
199199
needs: ['manylinux']
200200
strategy:
201201
matrix:
202-
python: [3.7, 3.8, 3.9]
202+
python: [3.7, 3.8, 3.9, "3.10"]
203203
steps:
204204
- name: Download wheels
205205
uses: actions/download-artifact@v2

.mergify.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@ queue_rules:
55
- "#changes-requested-reviews-by=0"
66
- status-success=Lint
77
- status-success=Python (3.7, macos-latest)
8-
- status-success=Python (3.9, macos-latest)
8+
- status-success=Python (3.10, macos-latest)
99
- status-success=Python (3.7, ubuntu-latest)
10-
- status-success=Python (3.9, ubuntu-latest)
10+
- status-success=Python (3.10, ubuntu-latest)
1111
- status-success=Python (3.7, windows-latest)
12-
- status-success=Python (3.9, windows-latest)
12+
- status-success=Python (3.10, windows-latest)
1313
- "status-success=ci/circleci: build"
1414

1515
pull_request_rules:
@@ -22,11 +22,11 @@ pull_request_rules:
2222
- label=AUTOMERGE-REQUESTED
2323
- status-success=Lint
2424
- status-success=Python (3.7, macos-latest)
25-
- status-success=Python (3.9, macos-latest)
25+
- status-success=Python (3.10, macos-latest)
2626
- status-success=Python (3.7, ubuntu-latest)
27-
- status-success=Python (3.9, ubuntu-latest)
27+
- status-success=Python (3.10, ubuntu-latest)
2828
- status-success=Python (3.7, windows-latest)
29-
- status-success=Python (3.9, windows-latest)
29+
- status-success=Python (3.10, windows-latest)
3030
- "status-success=ci/circleci: build"
3131
actions:
3232
queue:

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,7 @@ def finalize_options(self):
9797
"Programming Language :: Python :: 3.7",
9898
"Programming Language :: Python :: 3.8",
9999
"Programming Language :: Python :: 3.9",
100+
"Programming Language :: Python :: 3.10",
100101
"Programming Language :: Python :: 3 :: Only",
101102
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
102103
"Development Status :: 3 - Alpha",

0 commit comments

Comments
 (0)