From 70ea1f20baba70ef3a53c462d539a5b07ee9cef0 Mon Sep 17 00:00:00 2001 From: Manuel Barkhau Date: Fri, 22 Feb 2019 10:44:03 +0100 Subject: [PATCH] better python version specs --- makefile | 2 +- setup.py | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/makefile b/makefile index f45f9cb..1d11a8c 100644 --- a/makefile +++ b/makefile @@ -490,7 +490,7 @@ bump_version: .PHONY: dist_build dist_build: $(DEV_ENV_PY) setup.py sdist; - $(DEV_ENV_PY) setup.py bdist_wheel --python-tag=$(BDIST_WHEEL_PYTHON_TAG); + $(DEV_ENV_PY) setup.py bdist_wheel --python-tag=py2.py3; @rm -rf src/*.egg-info diff --git a/setup.py b/setup.py index 5af54c1..ca471ca 100644 --- a/setup.py +++ b/setup.py @@ -57,6 +57,8 @@ setuptools.setup( pycalver=pycalver.__main__:cli """, zip_safe=True, + + # See https://pypi.python.org/pypi?%3Aaction=list_classifiers classifiers=[ "Development Status :: 4 - Beta", "Environment :: Console", @@ -69,9 +71,7 @@ setuptools.setup( "Operating System :: MacOS :: MacOS X", "Programming Language :: Python", "Programming Language :: Python :: 2.7", - "Programming Language :: Python :: 3.5", - "Programming Language :: Python :: 3.6", - "Programming Language :: Python :: 3.7", + "Programming Language :: Python :: 3", "Programming Language :: Python :: Implementation :: CPython", "Programming Language :: Python :: Implementation :: PyPy", "Topic :: Software Development :: Libraries",