Skip to content

Commit 45804be

Browse files
authored
Merge pull request #830 from kaokab33/support-python-3.13
Update purldb to support Python 3.13
2 parents edfda65 + af78ad1 commit 45804be

3 files changed

Lines changed: 7 additions & 2 deletions

File tree

.github/workflows/pypi-release-minecode-pipeline.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
- name: Set up Python
2020
uses: actions/setup-python@v5
2121
with:
22-
python-version: 3.11
22+
python-version: 3.13
2323

2424
- name: Install flot
2525
run: python -m pip install flot --user

.github/workflows/pypi-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
- name: Set up Python
2929
uses: actions/setup-python@v5
3030
with:
31-
python-version: 3.12
31+
python-version: 3.13
3232

3333
- name: Install pypa/build and twine
3434
run: python -m pip install --user --upgrade build twine pkginfo

setup.cfg

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,10 @@ classifiers =
1919
Intended Audience :: Developers
2020
Programming Language :: Python :: 3
2121
Programming Language :: Python :: 3 :: Only
22+
Programming Language :: Python :: 3.10
23+
Programming Language :: Python :: 3.11
24+
Programming Language :: Python :: 3.12
25+
Programming Language :: Python :: 3.13
2226
Topic :: Utilities
2327

2428
keywords =
@@ -34,6 +38,7 @@ keywords =
3438
packages = find:
3539
include_package_data = true
3640
zip_safe = false
41+
python_requires = >=3.10
3742
install_requires =
3843
aboutcode.pipeline >= 0.2.1
3944
arrow >= 1.3.0

0 commit comments

Comments
 (0)