From 8ef3ed7f9caf4f2b6e3059ae63b31eff69af611f Mon Sep 17 00:00:00 2001 From: Hugo Osvaldo Barrera Date: Sat, 15 Aug 2020 22:41:34 +0200 Subject: [PATCH] Drop support for Python 3.5 --- .github/workflows/tests.yml | 2 +- README.rst | 2 +- setup.py | 2 +- tox.ini | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 50bfc59..0617da7 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -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: diff --git a/README.rst b/README.rst index 80785e8..fce3d45 100644 --- a/README.rst +++ b/README.rst @@ -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. diff --git a/setup.py b/setup.py index d4f28c5..6231b73 100755 --- a/setup.py +++ b/setup.py @@ -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", ], diff --git a/tox.ini b/tox.ini index 61fc6a4..09e934c 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist = {py35,py36,py37,py38}{,-images} +envlist = {py36,py37,py38,py39}{,-images} skip_missing_interpreters = True [testenv]