Skip to content

Commit 5457bd6

Browse files
authored
python: support Python 3.13 (#12)
* python: support Python 3.13 It is now in beta * Update setup.cfg * Update requirements.txt * Update python.yml * Update python.yml
1 parent 10d45d1 commit 5457bd6

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

.github/workflows/python.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ jobs:
66
runs-on: ubuntu-latest
77
strategy:
88
matrix:
9-
python: ['3.11', '3.12']
9+
python: ['3.11', '3.12', '3.13-dev']
1010
env:
1111
DEBUG_ACCESS_KEY: ${{ secrets.DEBUG_ACCESS_KEY }}
1212
steps:

requirements.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
requests==2.28.1; python_version == '3.11'
2-
requests==2.31.0; python_version == '3.12'
2+
requests==2.31.0; python_version >= '3.12'
33
filelock==3.9.0; python_version == '3.11'
4-
filelock==3.13.1; python_version == '3.12'
4+
filelock==3.14.0; python_version >= '3.12'
55
langcodes==3.3.0
66
internetarchive==3.3.0; python_version == '3.11'
7-
internetarchive==3.5.0; python_version == '3.12'
7+
internetarchive==3.7.0; python_version >= '3.12'

setup.cfg

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ classifiers =
1414
Programming Language :: Python :: 3 :: Only
1515
Programming Language :: Python :: 3.11
1616
Programming Language :: Python :: 3.12
17+
Programming Language :: Python :: 3.13
1718
Topic :: Software Development :: Libraries
1819
Topic :: Software Development :: Libraries :: Python Modules
1920
Topic :: System :: Systems Administration

0 commit comments

Comments
 (0)