Skip to content

Commit

Permalink
Drop support for Python 3.6
Browse files Browse the repository at this point in the history
  • Loading branch information
Hugo Osvaldo Barrera committed Jul 11, 2022
1 parent 141ec0d commit 9907987
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
strategy:
matrix:
os: [ ubuntu-20.04, macOS-10.15, windows-2019 ]
python: [ '3.6', '3.7', '3.8', '3.9', '3.10' ]
python: [ '3.7', '3.8', '3.9', '3.10' ]
variant: [ "py", "py-images" ]
name: python${{ matrix.python }} on ${{ matrix.os }} ${{ matrix.variant }}
steps:
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ python-barcode
There are no external dependencies when generating SVG files.
Pillow is required for generating images (e.g.: PNGs).

Support Python 3.6 to 3.10.
Support Python 3.7 to 3.10.

.. image:: example-ean13.png
:target: https://github.com/WhyNotHugo/python-barcode
Expand Down
7 changes: 6 additions & 1 deletion docs/changelog.rst
Original file line number Diff line number Diff line change
@@ -1,9 +1,14 @@
Changelog
---------

v0.14.0
unreleased
~~~~~~~~~~

* **Breaking** Dropped support for Python 3.6.

v0.14.0
~~~~~~~

* **Breaking**: The default dimensions have changed slightly. This is so that
the results of generating a PNG and an SVG look more alike.
* Previous versions included an empty text element for SVGs with no comment.
Expand Down
1 change: 0 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = {py36,py37,py38,py39,py310}{,-images}
envlist = {py37,py38,py39,py310}{,-images}
skip_missing_interpreters = True

[testenv]
Expand Down

0 comments on commit 9907987

Please sign in to comment.