Skip to content

Commit c641d48

Browse files
authored
Merge branch 'master' into master
Signed-off-by: plun1331 <[email protected]>
2 parents 66ef705 + 87d3d8a commit c641d48

File tree

4 files changed

+8
-7
lines changed

4 files changed

+8
-7
lines changed

.github/workflows/check.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
- uses: actions/checkout@v4
1313
- uses: actions/setup-python@v5
1414
with:
15-
python-version: "3.11"
15+
python-version: "3.12"
1616
cache: "pip"
1717
cache-dependency-path: "requirements/dev.txt"
1818
- name: Install dependencies
@@ -28,7 +28,7 @@ jobs:
2828
- uses: actions/checkout@v4
2929
- uses: actions/setup-python@v5
3030
with:
31-
python-version: "3.11"
31+
python-version: "3.12"
3232
cache: "pip"
3333
cache-dependency-path: "requirements/dev.txt"
3434
- name: Install dependencies

.github/workflows/lint.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
- uses: actions/checkout@v4
1313
- uses: actions/setup-python@v5
1414
with:
15-
python-version: "3.11"
15+
python-version: "3.12"
1616
cache: "pip"
1717
cache-dependency-path: "requirements/dev.txt"
1818
- name: Install dependencies
@@ -34,7 +34,7 @@ jobs:
3434
- uses: actions/checkout@v4
3535
- uses: actions/setup-python@v5
3636
with:
37-
python-version: "3.11"
37+
python-version: "3.12"
3838
cache: "pip"
3939
cache-dependency-path: "requirements/dev.txt"
4040
- name: Install dependencies

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
strategy:
1717
matrix:
1818
os: [ubuntu-latest, macos-latest, windows-latest]
19-
python-version: ["3.8", "3.9", "3.10", "3.11"]
19+
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
2020
env:
2121
OS: ${{ matrix.os }}
2222
PYTHON: ${{ matrix.python-version }}

pyproject.toml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[build-system]
22
requires = [
3-
"setuptools>=69,<70",
3+
"setuptools>=62.6,<70",
44
"setuptools-scm>=6.2,<8",
55
]
66
build-backend = "setuptools.build_meta"
@@ -24,6 +24,7 @@ classifiers = [
2424
"Programming Language :: Python :: 3.9",
2525
"Programming Language :: Python :: 3.10",
2626
"Programming Language :: Python :: 3.11",
27+
"Programming Language :: Python :: 3.12",
2728
"Topic :: Internet",
2829
"Topic :: Software Development :: Libraries",
2930
"Topic :: Software Development :: Libraries :: Python Modules",
@@ -65,7 +66,7 @@ voice = {file = "requirements/voice.txt"}
6566
[tool.setuptools_scm]
6667

6768
[tool.black]
68-
target-version = ['py38', 'py39', 'py310', 'py311']
69+
target-version = ['py38', 'py39', 'py310', 'py311', 'py312']
6970

7071
[tool.isort]
7172
profile = "black"

0 commit comments

Comments
 (0)