Skip to content

Commit ebbd856

Browse files
authored
Support Python 3.12 (#47)
2 parents af4d0fb + 0e1574a commit ebbd856

File tree

3 files changed

+4
-5
lines changed

3 files changed

+4
-5
lines changed

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ jobs:
2727
- "3.9"
2828
- "3.10"
2929
- "3.11"
30+
- "3.12"
3031
os:
3132
- "ubuntu-latest"
3233
- "macos-latest"
@@ -36,7 +37,6 @@ jobs:
3637
- uses: actions/checkout@v3
3738

3839
- name: Set up Python ${{ matrix.python-version }}
39-
id: python-install
4040
uses: actions/setup-python@v4
4141
with:
4242
python-version: ${{ matrix.python-version }}

.github/workflows/release.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,10 @@ jobs:
1515
steps:
1616
- uses: actions/checkout@v3
1717

18-
- name: Set up Python ${{ matrix.python-version }}
19-
id: python-install
18+
- name: Set up Python
2019
uses: actions/setup-python@v4
2120
with:
22-
python-version: ${{ matrix.python-version }}
21+
python-version: "3.12"
2322

2423
- name: Install Hatch
2524
run: pip install --upgrade hatch

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ cov = [
6969
]
7070

7171
[[tool.hatch.envs.test.matrix]]
72-
python = ["39", "310", "311"]
72+
python = ["39", "310", "311", "312"]
7373

7474
[tool.autopep8]
7575
ignore = ["W503"]

0 commit comments

Comments
 (0)