Skip to content

Commit 765ed78

Browse files
committed
Add py3.10 to compatibility matrix
Signed-off-by: Kristen Armes <[email protected]>
1 parent 7a8fcba commit 765ed78

11 files changed

+11
-6
lines changed

.github/workflows/common_pull_request.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
runs-on: ubuntu-22.04
1010
strategy:
1111
matrix:
12-
python-version: ['3.8.x', '3.9.x']
12+
python-version: ['3.8.x', '3.9.x', '3.10.x']
1313
steps:
1414
- name: Checkout
1515
uses: actions/checkout@v1

.github/workflows/databuilder_pull_request.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ubuntu-22.04
1111
strategy:
1212
matrix:
13-
python-version: ['3.8.x', '3.9.x']
13+
python-version: ['3.8.x', '3.9.x', '3.10.x']
1414
steps:
1515
- name: Checkout
1616
uses: actions/checkout@v1

.github/workflows/frontend_pull_request.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ubuntu-22.04
1111
strategy:
1212
matrix:
13-
python-version: ['3.8.x', '3.9.x']
13+
python-version: ['3.8.x', '3.9.x', '3.10.x']
1414
steps:
1515
- name: Checkout
1616
uses: actions/checkout@v1

.github/workflows/metadata_pull_request.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ubuntu-22.04
1111
strategy:
1212
matrix:
13-
python-version: ['3.8.x', '3.9.x']
13+
python-version: ['3.8.x', '3.9.x', '3.10.x']
1414
steps:
1515
- name: Checkout
1616
uses: actions/checkout@v1

.github/workflows/noop_pull_request.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
runs-on: ubuntu-latest
3131
strategy:
3232
matrix:
33-
python-version: ['3.8.x', '3.9.x']
33+
python-version: ['3.8.x', '3.9.x', '3.10.x']
3434
steps:
3535
- name: Do nothing
3636
run: exit 0

.github/workflows/search_pull_request.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ubuntu-22.04
1111
strategy:
1212
matrix:
13-
python-version: ['3.8.x', '3.9.x']
13+
python-version: ['3.8.x', '3.9.x', '3.10.x']
1414
steps:
1515
- name: Checkout
1616
uses: actions/checkout@v1

common/setup.py

+1
Original file line numberDiff line numberDiff line change
@@ -51,5 +51,6 @@
5151
classifiers=[
5252
'Programming Language :: Python :: 3.8',
5353
'Programming Language :: Python :: 3.9',
54+
'Programming Language :: Python :: 3.10',
5455
],
5556
)

databuilder/setup.py

+1
Original file line numberDiff line numberDiff line change
@@ -142,5 +142,6 @@
142142
classifiers=[
143143
'Programming Language :: Python :: 3.8',
144144
'Programming Language :: Python :: 3.9',
145+
'Programming Language :: Python :: 3.10',
145146
],
146147
)

frontend/setup.py

+1
Original file line numberDiff line numberDiff line change
@@ -83,5 +83,6 @@ def build_js() -> None:
8383
classifiers=[
8484
'Programming Language :: Python :: 3.8',
8585
'Programming Language :: Python :: 3.9',
86+
'Programming Language :: Python :: 3.10',
8687
],
8788
)

metadata/setup.py

+1
Original file line numberDiff line numberDiff line change
@@ -53,5 +53,6 @@
5353
classifiers=[
5454
'Programming Language :: Python :: 3.8',
5555
'Programming Language :: Python :: 3.9',
56+
'Programming Language :: Python :: 3.10',
5657
],
5758
)

search/setup.py

+1
Original file line numberDiff line numberDiff line change
@@ -44,5 +44,6 @@
4444
classifiers=[
4545
'Programming Language :: Python :: 3.8',
4646
'Programming Language :: Python :: 3.9',
47+
'Programming Language :: Python :: 3.10',
4748
],
4849
)

0 commit comments

Comments
 (0)