Skip to content

Commit 7c8d06a

Browse files
authored
use Python 3.12 (#262)
1 parent dd90504 commit 7c8d06a

File tree

3 files changed

+7
-6
lines changed

3 files changed

+7
-6
lines changed

.github/workflows/release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
- uses: "actions/checkout@v4"
1616
- uses: "actions/setup-python@v4"
1717
with:
18-
python-version: 3.11
18+
python-version: 3.12
1919
- name: "Install dependencies"
2020
run: "pip install -r requirements/dev-requirements.txt"
2121
- name: "Publish to PyPI"

.github/workflows/tests.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
- name: Set up Python
1515
uses: actions/setup-python@v4
1616
with:
17-
python-version: 3.11
17+
python-version: 3.12
1818
- name: Install dependencies
1919
run: |
2020
python -m pip install --upgrade pip
@@ -28,7 +28,7 @@ jobs:
2828
runs-on: ubuntu-latest
2929
strategy:
3030
matrix:
31-
python-version: ["3.8", "3.9", "3.10", "3.11"]
31+
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
3232

3333
# Service containers to run with `container-job`
3434
services:
@@ -67,13 +67,13 @@ jobs:
6767
PG_PASSWORD: postgres
6868
- name: Upload coverage
6969
uses: codecov/codecov-action@v1
70-
if: matrix.python-version == '3.11'
70+
if: matrix.python-version == '3.12'
7171

7272
test_sqlite:
7373
runs-on: ubuntu-latest
7474
strategy:
7575
matrix:
76-
python-version: ["3.8", "3.9", "3.10", "3.11"]
76+
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
7777

7878
steps:
7979
- uses: actions/checkout@v4
@@ -90,4 +90,4 @@ jobs:
9090
run: ./scripts/test-sqlite.sh
9191
- name: Upload coverage
9292
uses: codecov/codecov-action@v3
93-
if: matrix.python-version == '3.11'
93+
if: matrix.python-version == '3.12'

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,7 @@ def extras_require() -> t.Dict[str, t.List[str]]:
8484
"Programming Language :: Python :: 3.9",
8585
"Programming Language :: Python :: 3.10",
8686
"Programming Language :: Python :: 3.11",
87+
"Programming Language :: Python :: 3.12",
8788
"Programming Language :: Python :: Implementation :: CPython",
8889
],
8990
)

0 commit comments

Comments
 (0)