Skip to content

Commit 9d0aa4d

Browse files
committed
Declare support for and test on Python 3.13
1 parent 0f6b7b3 commit 9d0aa4d

File tree

4 files changed

+5
-2
lines changed

4 files changed

+5
-2
lines changed

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
strategy:
99
matrix:
1010
os: [ ubuntu-22.04 ]
11-
python: [ '3.8', '3.9', '3.10', '3.11', '3.12' ]
11+
python: [ '3.8', '3.9', '3.10', '3.11', '3.12', '3.13' ]
1212
variant: [ "py", "py-images" ]
1313
include:
1414
- os: macOS-12

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ python-barcode
2626
There are no external dependencies when generating SVG files.
2727
Pillow is required for generating images (e.g.: PNGs).
2828

29-
Support Python 3.8 to 3.12.
29+
Support Python 3.8 to 3.13.
3030

3131
.. image:: example-ean13.png
3232
:target: https://github.com/WhyNotHugo/python-barcode

docs/changelog.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@ v0.16.0
1414
included resulting in a transparent background.
1515
* Do not paint text if its size would be zero, to avoid an "invalid ppem value"
1616
error with newer versions of Pillow.
17+
* Add support for Python 3.13.
18+
1719

1820
v0.15.1
1921
~~~~~~~

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@
3030
"Programming Language :: Python :: 3.10",
3131
"Programming Language :: Python :: 3.11",
3232
"Programming Language :: Python :: 3.12",
33+
"Programming Language :: Python :: 3.13",
3334
"Topic :: Multimedia :: Graphics",
3435
"Topic :: Software Development :: Libraries :: Python Modules",
3536
],

0 commit comments

Comments
 (0)