diff options
| author | Ulf Magnusson <ulfalizer@gmail.com> | 2019-06-05 15:52:28 +0200 |
|---|---|---|
| committer | Ulf Magnusson <ulfalizer@gmail.com> | 2019-06-06 04:57:22 +0200 |
| commit | e0baa79af640b79c6ce5519e6f63b7c49f058597 (patch) | |
| tree | 87bae8ef2776ceb20670ff45908fb1305d7b73d6 | |
| parent | 5fbd70e9c07a94ba7fa3034fc681dcdfa6aa73ff (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.
| -rw-r--r-- | setup.py | 5 |
1 files changed, 2 insertions, 3 deletions
@@ -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", |
