diff options
Diffstat (limited to 'setup.py')
| -rwxr-xr-x | setup.py | 12 |
1 files changed, 6 insertions, 6 deletions
@@ -24,8 +24,8 @@ with open('requirements-tests.txt', 'r') as fh: # ########## platform specific stuff ############# if sys.version_info[0] == 2: raise Exception('Python 2 is not supported') -elif sys.version_info[0] == 3 and sys.version_info[1] < 5: - raise Exception('Python 3 version < 3.5 is not supported') +elif sys.version_info[0] == 3 and sys.version_info[1] < 7: + raise Exception('Python 3 version < 3.7 is not supported') ################################################## @@ -106,7 +106,7 @@ class nikola_build_py(build_py): setup(name='Nikola', - version='8.2.0', + version='8.2.3', description='A modular, fast, simple, static website and blog generator', long_description=long_description, author='Roberto Alsina and others', @@ -128,17 +128,17 @@ setup(name='Nikola', 'Operating System :: POSIX', 'Operating System :: Unix', 'Programming Language :: Python', - 'Programming Language :: Python :: 3.5', - 'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: 3.7', 'Programming Language :: Python :: 3.8', + 'Programming Language :: Python :: 3.9', + 'Programming Language :: Python :: 3.10', 'Topic :: Internet', 'Topic :: Internet :: WWW/HTTP', 'Topic :: Text Processing :: Markup'], install_requires=dependencies, extras_require=extras, include_package_data=True, - python_requires='>=3.5', + python_requires='>=3.7', cmdclass={'install': nikola_install, 'build_py': nikola_build_py}, data_files=[ ('share/doc/nikola', [ |
