From 1847de66b7ff0cd02b407e482aebfe257e2b3fd2 Mon Sep 17 00:00:00 2001 From: joncrall Date: Sat, 9 Jul 2022 19:24:37 -0400 Subject: [PATCH] Does 3.4 work? --- setup.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index a91ccb02..ee3ed80d 100755 --- a/setup.py +++ b/setup.py @@ -221,7 +221,8 @@ def gen_packages_items(): packages=find_packages('.'), # packages=['xdoctest', 'xdoctest.utils', 'xdoctest.docstr'], # custom PyPI classifier for pytest plugins - python_requires='>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*', + # python_requires='>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*', + python_requires='>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*', package_data={ 'xdoctest': ['py.typed', '*.pyi'], }, @@ -242,6 +243,7 @@ def gen_packages_items(): 'Programming Language :: Python :: 3.7', 'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: 3.5', + 'Programming Language :: Python :: 3.4', 'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: Implementation :: PyPy', 'Programming Language :: Python :: Implementation :: CPython',