Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

setup.py: drop python3.5 support #808

Merged
merged 1 commit into from
Mar 27, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
3 changes: 3 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@ Changelog for Isso

%(version)s (%(date)s)

- Drop support for outdated Python version 3.5
(#808, l33tname)

0.12.6 (2022-03-06)
-------------------

Expand Down
2 changes: 1 addition & 1 deletion docs/docs/install.rst
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ Install from PyPi
Requirements
^^^^^^^^^^^^

- Python 3.5+ (+ devel headers)
- Python 3.6+ (+ devel headers)
- SQLite 3.3.8 or later
- a working C compiler

Expand Down
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,14 +29,13 @@
description='lightweight Disqus alternative',
long_description=long_description,
long_description_content_type='text/markdown',
python_requires='>=3.5',
python_requires='>=3.6',
classifiers=[
"Development Status :: 4 - Beta",
"Topic :: Internet",
"Topic :: Internet :: WWW/HTTP :: HTTP Servers",
"Topic :: Internet :: WWW/HTTP :: WSGI :: Application",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
Expand Down