Skip to content

Commit d575461

Browse files
authored
Merge pull request #158 from bsipocz/python_314
Support for Python 3.14
2 parents 32b3b11 + 58f7bd5 commit d575461

File tree

2 files changed

+11
-1
lines changed

2 files changed

+11
-1
lines changed

.github/workflows/test.yml

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,16 @@ jobs:
1313
matrix:
1414
os: [ubuntu, macos, windows]
1515
python-version:
16-
["3.9", "3.10", "3.11", "3.12", "3.13", "pypy-3.9", "pypy-3.10"]
16+
[
17+
"3.9",
18+
"3.10",
19+
"3.11",
20+
"3.12",
21+
"3.13",
22+
"3.14-dev",
23+
"pypy-3.9",
24+
"pypy-3.10",
25+
]
1726

1827
steps:
1928
- uses: actions/checkout@v5

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ classifiers = [
1717
"Programming Language :: Python :: 3.11",
1818
"Programming Language :: Python :: 3.12",
1919
"Programming Language :: Python :: 3.13",
20+
"Programming Language :: Python :: 3.14",
2021
]
2122
description = "Makes it easy to load subpackages and functions on demand."
2223
dependencies = [

0 commit comments

Comments
 (0)