summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorUlf Magnusson <ulfalizer@gmail.com>2019-06-05 15:52:28 +0200
committerUlf Magnusson <ulfalizer@gmail.com>2019-06-06 04:57:22 +0200
commite0baa79af640b79c6ce5519e6f63b7c49f058597 (patch)
tree87bae8ef2776ceb20670ff45908fb1305d7b73d6 /setup.py
parent5fbd70e9c07a94ba7fa3034fc681dcdfa6aa73ff (diff)
Tweak python_requires to 2.7/3.2+
Many of the utilities need argparse, which was added in 3.2. Kconfiglib itself is compatible with 3.1.
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/setup.py b/setup.py
index 4aab966..484de11 100644
--- a/setup.py
+++ b/setup.py
@@ -68,8 +68,8 @@ setuptools.setup(
'windows-curses; sys_platform == "win32"',
),
- # Needs support for unnumbered {} in format()
- python_requires=">=2.7,!=3.0.*",
+ # Needs support for unnumbered {} in format() and argparse
+ python_requires=">=2.7,!=3.0.*,!=3.1.*",
project_urls={
"GitHub repository": "https://github.com/ulfalizer/Kconfiglib",
@@ -87,7 +87,6 @@ setuptools.setup(
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
- "Programming Language :: Python :: 3.1",
"Programming Language :: Python :: 3.2",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",