Skip to content

Commit

Permalink
Drop support for Python 3.5
Browse files Browse the repository at this point in the history
It has reached its EOL in September 2020, see
https://www.python.org/dev/peps/pep-0478/#release-schedule
  • Loading branch information
michael-k authored and markpeek committed Oct 4, 2020
1 parent bc086dc commit 30f293d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
1 change: 0 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ language: python
dist: xenial
python:
- "2.7"
- "3.5"
- "3.6"
- "3.7.3"
- "3.8"
Expand Down
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,9 @@
test_suite="tests",
use_2to3=True,
requires=['slimit'],
python_requires=">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*",
python_requires=(
">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*"
),
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
Expand All @@ -28,7 +30,6 @@
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 2.7",
],
)

0 comments on commit 30f293d

Please sign in to comment.