Skip to content

Commit 86109d6

Browse files
committed
Retain support for Python 3.10
1 parent ce860d0 commit 86109d6

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
strategy:
1212
fail-fast: true
1313
matrix:
14-
python-version: ["3.11", "3.12", "3.13"]
14+
python-version: ["3.10", "3.11", "3.12", "3.13"]
1515
experimental: [false]
1616
include:
1717
- python-version: "3.14-dev"

pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,10 @@ classifiers = [
2121
"Topic :: Software Development :: Libraries :: Python Modules",
2222
"Programming Language :: Python",
2323
"Programming Language :: Python :: 3",
24-
"Programming Language :: Python :: 3.8",
25-
"Programming Language :: Python :: 3.9",
2624
"Programming Language :: Python :: 3.10",
2725
"Programming Language :: Python :: 3.11",
26+
"Programming Language :: Python :: 3.12",
27+
"Programming Language :: Python :: 3.13",
2828
"Programming Language :: Python :: Implementation :: CPython",
2929
"Programming Language :: Python :: Implementation :: PyPy",
3030
]
@@ -35,7 +35,7 @@ packages = [
3535
include = ["src/odin/py.typed"]
3636

3737
[tool.poetry.dependencies]
38-
python = "^3.11"
38+
python = "^3.10"
3939
pyyaml = {version = "*", optional = true }
4040
toml = {version = "*", optional = true }
4141
pint = {version = "*", optional = true }

0 commit comments

Comments
 (0)