Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Drop python 2 support.
- Loading branch information
Showing
with
1 addition
and
6 deletions.
-
+1
−1
.github/workflows/pythonpackage.yml
-
+0
−4
Makefile
-
+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', |
|
|
|
You can’t perform that action at this time.
You signed in with another tab or window. Reload to refresh your session.
You signed out in another tab or window. Reload to refresh your session.