diff options
| author | 2022-08-05 01:00:44 -0400 | |
|---|---|---|
| committer | 2022-08-05 01:00:44 -0400 | |
| commit | c61750def3e047296a3633247aec4637bd216633 (patch) | |
| tree | cd7175c2f172e20255adb7d0ccf9a5fa405df175 /setup.py | |
| parent | 9132854aa950a4c85c89cf7617d3240bd3fe1cbd (diff) | |
| parent | 393aa58f2c5afd51f92fd9bd4b6dfd0dc90cea41 (diff) | |
Update upstream source from tag 'upstream/8.2.3'
Update to upstream version '8.2.3'
with Debian dir 572430fed4befec44daff4153d2f83da363024d0
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', [ |
