Skip to content

Commit 8d68e13

Browse files
chore(py): start from 3.12 (#197)
1 parent 119effa commit 8d68e13

File tree

3 files changed

+6
-7
lines changed

3 files changed

+6
-7
lines changed

.github/workflows/build_docs.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
strategy:
1313
matrix:
1414
python-version:
15-
- "3.13"
15+
- "3.12"
1616
os:
1717
- ubuntu-latest
1818
- macos-latest

.github/workflows/test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
strategy:
1212
fail-fast: false
1313
matrix:
14-
python-version: ["3.10", "3.11", "3.12", "3.13"]
14+
python-version: ["3.12", "3.13", "3.14"]
1515
os: [ubuntu-latest, macos-latest, windows-latest]
1616
runs-on: ${{ matrix.os }}
1717
steps:

pyproject.toml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,11 @@ classifiers = [
1212
"Intended Audience :: Science/Research",
1313
"Intended Audience :: Developers",
1414
"Operating System :: OS Independent",
15-
"Programming Language :: Python :: 3.10",
16-
"Programming Language :: Python :: 3.11",
1715
"Programming Language :: Python :: 3.12",
1816
"Programming Language :: Python :: 3.13",
17+
"Programming Language :: Python :: 3.14",
1918
]
20-
requires-python = ">= 3.10"
19+
requires-python = ">= 3.12"
2120
dependencies = []
2221

2322
[project.optional-dependencies]
@@ -105,8 +104,8 @@ exclude = [
105104
line-length = 120
106105
indent-width = 4
107106

108-
# Assume Python 3.10
109-
target-version = "py310"
107+
# Assume Python 3.12
108+
target-version = "py312"
110109

111110
[tool.ruff.lint]
112111
select = [

0 commit comments

Comments
 (0)