Skip to content

Commit 849e979

Browse files
authored
build: add python3.12 support and update CI (#261)
1 parent b4e2bbf commit 849e979

File tree

5 files changed

+6
-5
lines changed

5 files changed

+6
-5
lines changed

.github/workflows/docs-preview.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
- name: Setup python
2020
uses: actions/setup-python@v5
2121
with:
22-
python-version: '3.11'
22+
python-version: '3.12'
2323

2424
- name: Install Dependencies
2525
run: |

.github/workflows/docs-publish.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@ jobs:
99
runs-on: ubuntu-latest
1010
steps:
1111
- uses: actions/checkout@v4
12-
12+
1313
- name: Setup python
1414
uses: actions/setup-python@v5
1515
with:
16-
python-version: '3.11'
16+
python-version: '3.12'
1717

1818
- name: Install Dependencies
1919
run: |

.github/workflows/publish.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
- name: Setup python
1515
uses: actions/setup-python@v5
1616
with:
17-
python-version: '3.11'
17+
python-version: '3.12'
1818

1919
- name: Install Dependencies
2020
run: |

.github/workflows/python-package.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
runs-on: ubuntu-latest
1515
strategy:
1616
matrix:
17-
python-version: ["3.8", "3.9", "3.10", "3.11"]
17+
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
1818
steps:
1919
- uses: actions/checkout@v4
2020
- name: Setup python

pyproject.toml

+1
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ classifiers = [
1414
"Programming Language :: Python :: 3.9",
1515
"Programming Language :: Python :: 3.10",
1616
"Programming Language :: Python :: 3.11",
17+
"Programming Language :: Python :: 3.12",
1718
"Programming Language :: Python :: 3 :: Only",
1819
"Topic :: Software Development",
1920
]

0 commit comments

Comments
 (0)