diff options
-rw-r--r-- | setup.py | 1 | ||||
-rw-r--r-- | tests/test_setup.py | 2 |
2 files changed, 3 insertions, 0 deletions
@@ -32,6 +32,7 @@ Programming Language :: Python :: 3.4 Programming Language :: Python :: 3.5 Programming Language :: Python :: 3.6 Programming Language :: Python :: 3.7 +Programming Language :: Python :: 3.8 Programming Language :: Python :: Implementation :: CPython Programming Language :: Python :: Implementation :: PyPy Programming Language :: Python :: Implementation :: Jython diff --git a/tests/test_setup.py b/tests/test_setup.py index d786ca05..9ab10391 100644 --- a/tests/test_setup.py +++ b/tests/test_setup.py @@ -40,6 +40,8 @@ class SetupPyTest(CoverageTest): classifiers = setup_args['classifiers'] self.assertGreater(len(classifiers), 7) self.assert_starts_with(classifiers[-1], "Development Status ::") + self.assertIn("Programming Language :: Python :: %d" % sys.version_info[:1], classifiers) + self.assertIn("Programming Language :: Python :: %d.%d" % sys.version_info[:2], classifiers) long_description = setup_args['long_description'].splitlines() self.assertGreater(len(long_description), 7) |