Skip to content

Commit 8226ef2

Browse files
committed
Officially support Python 3.12
1 parent 92d44f1 commit 8226ef2

3 files changed

Lines changed: 8 additions & 5 deletions

File tree

.github/workflows/ci.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,9 @@ jobs:
1313
fail-fast: false
1414
matrix:
1515
include:
16-
- python: '^3.11'
16+
- python: '^3.12'
17+
os: ubuntu-latest
18+
- python: '3.12'
1719
os: macos-latest
1820
- python: '3.11'
1921
os: windows-latest
@@ -29,7 +31,7 @@ jobs:
2931
runs-on: ${{matrix.os}}
3032
steps:
3133
- name: Download source
32-
uses: actions/checkout@v3
34+
uses: actions/checkout@v4
3335
- name: Install Python
3436
uses: actions/setup-python@v4
3537
with:
@@ -51,11 +53,11 @@ jobs:
5153
runs-on: ubuntu-latest
5254
steps:
5355
- name: Download source
54-
uses: actions/checkout@v3
56+
uses: actions/checkout@v4
5557
- name: Install Python
5658
uses: actions/setup-python@v4
5759
with:
58-
python-version: '3.10'
60+
python-version: '3.12'
5961
- name: Install Hatch
6062
run: |
6163
pip install hatch

.github/workflows/deploy-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
- name: Setup Python
1414
uses: actions/setup-python@v4
1515
with:
16-
python-version: '3.11'
16+
python-version: '3.12'
1717
- name: Install dependencies
1818
run: pip install -U build
1919
- name: Build package

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ classifiers = [
2323
"Programming Language :: Python :: 3.9",
2424
"Programming Language :: Python :: 3.10",
2525
"Programming Language :: Python :: 3.11",
26+
"Programming Language :: Python :: 3.12",
2627
"Topic :: Documentation",
2728
"Topic :: Software Development :: Documentation",
2829
"Topic :: Text Processing :: Markup :: Markdown",

0 commit comments

Comments
 (0)