Skip to content

Commit 8ef3ed7

Browse files
author
Hugo Osvaldo Barrera
committed
Drop support for Python 3.5
1 parent 6dfbeff commit 8ef3ed7

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
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-18.04, macOS-10.14]
11-
python: [ '3.5', '3.6', '3.7' ]
11+
python: [ '3.6', '3.7', '3.8' ]
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
@@ -35,7 +35,7 @@ Please report any bugs at https://github.com/WhyNotHugo/python-barcode/issues
3535
Features
3636
--------
3737

38-
- Works on Python 3.5 to 3.8
38+
- Works on Python 3.6 to 3.9
3939
- No visualiser (just use your browser)
4040
- Generate barcodes as SVG files.
4141
- Generate barcodes as images (png, jpeg, etc). Requires Pillow.

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,10 @@
2323
"Operating System :: OS Independent",
2424
"Programming Language :: Python",
2525
"Programming Language :: Python :: 3",
26-
"Programming Language :: Python :: 3.5",
2726
"Programming Language :: Python :: 3.6",
2827
"Programming Language :: Python :: 3.7",
2928
"Programming Language :: Python :: 3.8",
29+
"Programming Language :: Python :: 3.9",
3030
"Topic :: Multimedia :: Graphics",
3131
"Topic :: Software Development :: Libraries :: Python Modules",
3232
],

tox.ini

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

55
[testenv]

0 commit comments

Comments
 (0)