Skip to content

Commit

Permalink
Drop support for Python 3.5
Browse files Browse the repository at this point in the history
  • Loading branch information
Hugo Osvaldo Barrera committed Aug 15, 2020
1 parent 6dfbeff commit 8ef3ed7
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 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-18.04, macOS-10.14]
python: [ '3.5', '3.6', '3.7' ]
python: [ '3.6', '3.7', '3.8' ]
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 @@ -35,7 +35,7 @@ Please report any bugs at https://github.com/WhyNotHugo/python-barcode/issues
Features
--------

- Works on Python 3.5 to 3.8
- Works on Python 3.6 to 3.9
- No visualiser (just use your browser)
- Generate barcodes as SVG files.
- Generate barcodes as images (png, jpeg, etc). Requires Pillow.
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,10 @@
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Topic :: Multimedia :: Graphics",
"Topic :: Software Development :: Libraries :: Python Modules",
],
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 = {py35,py36,py37,py38}{,-images}
envlist = {py36,py37,py38,py39}{,-images}
skip_missing_interpreters = True

[testenv]
Expand Down

0 comments on commit 8ef3ed7

Please sign in to comment.