From 393aa58f2c5afd51f92fd9bd4b6dfd0dc90cea41 Mon Sep 17 00:00:00 2001 From: Unit 193 Date: Fri, 5 Aug 2022 01:00:19 -0400 Subject: New upstream version 8.2.3. --- setup.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'setup.py') diff --git a/setup.py b/setup.py index bcdc32c..4558f8d 100755 --- a/setup.py +++ b/setup.py @@ -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', [ -- cgit v1.2.3