Skip to content

Commit 9907987

Browse files
author
Hugo Osvaldo Barrera
committed
Drop support for Python 3.6
1 parent 141ec0d commit 9907987

5 files changed

Lines changed: 9 additions & 5 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', '3.10' ]
11+
python: [ '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.10.
33+
Support Python 3.7 to 3.10.
3434

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

docs/changelog.rst

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,14 @@
11
Changelog
22
---------
33

4-
v0.14.0
4+
unreleased
55
~~~~~~~~~~
66

7+
* **Breaking** Dropped support for Python 3.6.
8+
9+
v0.14.0
10+
~~~~~~~
11+
712
* **Breaking**: The default dimensions have changed slightly. This is so that
813
the results of generating a PNG and an SVG look more alike.
914
* Previous versions included an empty text element for SVGs with no comment.

setup.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@
2323
"Operating System :: OS Independent",
2424
"Programming Language :: Python",
2525
"Programming Language :: Python :: 3",
26-
"Programming Language :: Python :: 3.6",
2726
"Programming Language :: Python :: 3.7",
2827
"Programming Language :: Python :: 3.8",
2928
"Programming Language :: Python :: 3.9",

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,py310}{,-images}
2+
envlist = {py37,py38,py39,py310}{,-images}
33
skip_missing_interpreters = True
44

55
[testenv]

0 commit comments

Comments
 (0)