Skip to content
Permalink
Browse files

Drop python 2 support.

  • Loading branch information
jelmer committed Jan 18, 2021
1 parent c093fc1 commit 7598100e8041ca182973c17813a0141c716959c8
Showing with 1 addition and 6 deletions.
  1. +1 −1 .github/workflows/pythonpackage.yml
  2. +0 −4 Makefile
  3. +0 −1 setup.py
@@ -9,7 +9,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: [2.7, 3.5, 3.6, 3.7, 3.8, pypy3]
python-version: [3.5, 3.6, 3.7, 3.8, pypy3]
fail-fast: false

steps:
@@ -1,11 +1,7 @@
PYTHON = python
FLAKE8 ?= flake8
SETUP = $(PYTHON) setup.py
ifeq ($(shell $(PYTHON) -c "import sys; print(sys.version_info >= (2, 7))"),True)
TESTRUNNER ?= unittest
else
TESTRUNNER ?= unittest2.__main__
endif
RUNTEST = PYTHONPATH=.:$(PYTHONPATH) $(PYTHON) -m $(TESTRUNNER)

DESTDIR=/
@@ -22,7 +22,6 @@
'Development Status :: 4 - Beta',
'License :: OSI Approved :: GNU General Public License v2 '
'or later (GPLv2+)',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',

0 comments on commit 7598100

Please sign in to comment.