Skip to content

Commit 1d8a638

Browse files
Increase compatibility with Python 3.14 (#848)
* Initial plan * Increase compatibility with Python 3.14 Co-authored-by: bruAristimunha <[email protected]> --------- Co-authored-by: copilot-swe-agent[bot] <[email protected]> Co-authored-by: bruAristimunha <[email protected]>
1 parent a6f4c70 commit 1d8a638

File tree

3 files changed

+8
-5
lines changed

3 files changed

+8
-5
lines changed

.github/workflows/download-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
fail-fast: true
1616
matrix:
1717
os: [ ubuntu-latest]
18-
python-version: [ "3.9" ]
18+
python-version: [ "3.10" ]
1919
defaults:
2020
run:
2121
shell: bash

.github/workflows/test.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,13 @@ jobs:
1616
strategy:
1717
fail-fast: true
1818
matrix:
19-
os: [ ubuntu-latest, macOS-latest, windows-latest ]
20-
python-version: [ "3.10", "3.11", "3.12", "3.13" ]
21-
exclude:
19+
os: [ ubuntu-latest ]
20+
python-version: [ "3.10", "3.11", "3.12", "3.13", "3.14" ]
21+
include:
22+
- os: macOS-latest
23+
python-version: "3.12"
2224
- os: windows-latest
23-
python-version: "3.13"
25+
python-version: "3.12"
2426
defaults:
2527
run:
2628
shell: bash

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ classifiers = [
2828
"Programming Language :: Python :: 3.11",
2929
"Programming Language :: Python :: 3.12",
3030
"Programming Language :: Python :: 3.13",
31+
"Programming Language :: Python :: 3.14",
3132
]
3233
readme = "README.md"
3334
requires-python = ">=3.10"

0 commit comments

Comments
 (0)