Skip to content

Commit

Permalink
Add py3.10 to compatibility matrix
Browse files Browse the repository at this point in the history
Signed-off-by: Kristen Armes <[email protected]>
  • Loading branch information
kristenarmes committed Apr 4, 2024
1 parent 7a8fcba commit 765ed78
Show file tree
Hide file tree
Showing 11 changed files with 11 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/common_pull_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
runs-on: ubuntu-22.04
strategy:
matrix:
python-version: ['3.8.x', '3.9.x']
python-version: ['3.8.x', '3.9.x', '3.10.x']
steps:
- name: Checkout
uses: actions/checkout@v1
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/databuilder_pull_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
runs-on: ubuntu-22.04
strategy:
matrix:
python-version: ['3.8.x', '3.9.x']
python-version: ['3.8.x', '3.9.x', '3.10.x']
steps:
- name: Checkout
uses: actions/checkout@v1
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/frontend_pull_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
runs-on: ubuntu-22.04
strategy:
matrix:
python-version: ['3.8.x', '3.9.x']
python-version: ['3.8.x', '3.9.x', '3.10.x']
steps:
- name: Checkout
uses: actions/checkout@v1
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/metadata_pull_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
runs-on: ubuntu-22.04
strategy:
matrix:
python-version: ['3.8.x', '3.9.x']
python-version: ['3.8.x', '3.9.x', '3.10.x']
steps:
- name: Checkout
uses: actions/checkout@v1
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/noop_pull_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.8.x', '3.9.x']
python-version: ['3.8.x', '3.9.x', '3.10.x']
steps:
- name: Do nothing
run: exit 0
2 changes: 1 addition & 1 deletion .github/workflows/search_pull_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
runs-on: ubuntu-22.04
strategy:
matrix:
python-version: ['3.8.x', '3.9.x']
python-version: ['3.8.x', '3.9.x', '3.10.x']
steps:
- name: Checkout
uses: actions/checkout@v1
Expand Down
1 change: 1 addition & 0 deletions common/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,5 +51,6 @@
classifiers=[
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
],
)
1 change: 1 addition & 0 deletions databuilder/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -142,5 +142,6 @@
classifiers=[
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
],
)
1 change: 1 addition & 0 deletions frontend/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,5 +83,6 @@ def build_js() -> None:
classifiers=[
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
],
)
1 change: 1 addition & 0 deletions metadata/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,5 +53,6 @@
classifiers=[
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
],
)
1 change: 1 addition & 0 deletions search/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,5 +44,6 @@
classifiers=[
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
],
)

0 comments on commit 765ed78

Please sign in to comment.