Skip to content

Commit bf633ef

Browse files
author
Hugo Osvaldo Barrera
authored
Merge pull request #124 from WhyNotHugo/python310
Add support for Python 3.10
2 parents dd2d40d + 2aa0f7a commit bf633ef

5 files changed

Lines changed: 5 additions & 3 deletions

File tree

.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-20.04, macOS-10.15, windows-2019 ]
11-
python: [ '3.6', '3.7', '3.8', '3.9' ]
11+
python: [ '3.6', '3.7', '3.8', '3.9', '3.10' ]
1212
variant: [ "py", "py-images" ]
1313
name: python${{ matrix.python }} on ${{ matrix.os }} ${{ matrix.variant }}
1414
steps:

README.rst

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

33-
Support Python 3.6 to 3.9.
33+
Support Python 3.6 to 3.10.
3434

3535
.. image:: example-ean13.png
3636
:target: https://github.com/WhyNotHugo/python-barcode

docs/changelog.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ Unreleased
1313
``default_writer()``.
1414
* A ``guardbar`` parameter has been added to EAN barcodes. This renders
1515
barcodes with guardars (longer bars).
16+
* Added support for Python 3.10.
1617

1718
v0.13.1
1819
~~~~~~~

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@
2727
"Programming Language :: Python :: 3.7",
2828
"Programming Language :: Python :: 3.8",
2929
"Programming Language :: Python :: 3.9",
30+
"Programming Language :: Python :: 3.10",
3031
"Topic :: Multimedia :: Graphics",
3132
"Topic :: Software Development :: Libraries :: Python Modules",
3233
],

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = {py36,py37,py38,py39}{,-images}
2+
envlist = {py36,py37,py38,py39,py310}{,-images}
33
skip_missing_interpreters = True
44

55
[testenv]

0 commit comments

Comments
 (0)