Skip to content

Commit 86cded6

Browse files
committed
build: bump to 0.4.0 and update Python support
- Bump version from 0.3.0 to 0.4.0 - Remove Python 3.7 and 3.8 support - Add Python 3.11, 3.12, and 3.13 support - Update python_requires from >=3.7 to >=3.9 - Update tox env_list to test py39-py313 Aligns with C2PA spec v2.2 upgrade and ubuntu-latest support
1 parent 8ffe164 commit 86cded6

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

setup.cfg

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[metadata]
22
name = numbers-c2pa
3-
version = 0.3.0
3+
version = 0.4.0
44
author = Numbers Co., Inc
55
author_email = [email protected]
66
description = Numbers C2PA tool
@@ -11,16 +11,17 @@ url = https://github.com/numbersprotocol/numbers-c2pa
1111
classifiers =
1212
Development Status :: 4 - Beta
1313
License :: OSI Approved :: MIT License
14-
Programming Language :: Python :: 3.7
15-
Programming Language :: Python :: 3.8
1614
Programming Language :: Python :: 3.9
1715
Programming Language :: Python :: 3.10
16+
Programming Language :: Python :: 3.11
17+
Programming Language :: Python :: 3.12
18+
Programming Language :: Python :: 3.13
1819

1920
[options]
2021
package_dir=
2122
=src
2223
zip_safe = True
23-
python_requires = >=3.7
24+
python_requires = >=3.9
2425
packages = find:
2526
install_requires =
2627
cryptography
@@ -68,7 +69,7 @@ exclude = .git,__pycache__,__init__.py,.mypy_cache,.pytest_cache,venv,.venv
6869

6970
[tox:tox]
7071
env_list=
71-
py38, py39, py310, flake8, pylint, bandit, test, report
72+
py39, py310, py311, py312, py313, flake8, pylint, bandit, test, report
7273

7374
[testenv]
7475
deps =

0 commit comments

Comments
 (0)