From: Jon Dufresne Date: Sat, 21 Oct 2017 16:49:07 +0000 (-0700) Subject: Test and document all supported Python versions X-Git-Tag: v2.5.2~3 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a97b426476638c815bdfe11196aa2e9940444cb4;p=thirdparty%2Fbabel.git Test and document all supported Python versions Add Python 3.6 to Travis CI and tox. Add PyPy to tox. Add trove classifiers for all supported versions. Helps package users know if the library is compatible. --- diff --git a/.travis.yml b/.travis.yml index b7eff7d9..f9469c99 100644 --- a/.travis.yml +++ b/.travis.yml @@ -35,6 +35,8 @@ matrix: python: 3.5 env: - PYTHON_TEST_FLAGS=-bb + - os: linux + python: 3.6 install: - bash .ci/deps.${TRAVIS_OS_NAME}.sh diff --git a/setup.py b/setup.py index 146f38dc..684c3871 100755 --- a/setup.py +++ b/setup.py @@ -44,12 +44,15 @@ setup( 'License :: OSI Approved :: BSD License', 'Operating System :: OS Independent', 'Programming Language :: Python', + 'Programming Language :: Python :: 2', 'Programming Language :: Python :: 2.6', 'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3.3', 'Programming Language :: Python :: 3.4', 'Programming Language :: Python :: 3.5', + 'Programming Language :: Python :: 3.6', + 'Programming Language :: Python :: Implementation :: CPython', 'Programming Language :: Python :: Implementation :: PyPy', 'Topic :: Software Development :: Libraries :: Python Modules', ], diff --git a/tox.ini b/tox.ini index 53746582..b71dec7c 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist = py26, py27, pypy, py33, py34, py26-cdecimal, py27-cdecimal +envlist = py26, py27, pypy, py33, py34, py35, py36, pypy3, py26-cdecimal, py27-cdecimal [testenv] deps =