Skip to content

Commit

Permalink
setup.py, docs: Drop python3.5 support (isso-comments#808)
Browse files Browse the repository at this point in the history
Since not tests are run for 3.5 drop support
with the next release.
Also Python 3.5 has reached end-of-life on 5-Sep-2020.
Python 3.5.10 is the final release of 3.5.
https://www.python.org/downloads/release/python-3510/
  • Loading branch information
fliiiix committed Mar 27, 2022
1 parent 8c306f4 commit 79a7746
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
3 changes: 3 additions & 0 deletions CHANGES.rst
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
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
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

0 comments on commit 79a7746

Please sign in to comment.