Skip to content

Commit

Permalink
Dropping Python 2.7
Browse files Browse the repository at this point in the history
  • Loading branch information
rafaelpivato committed Apr 23, 2020
1 parent daf17f0 commit 8881a4a
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
6 changes: 4 additions & 2 deletions HISTORY.rst
Expand Up @@ -2,11 +2,13 @@
History
=======

1.8.8a (unstable)
-----------------
1.8.8a
------

* Binary adjustments and enhancements on top of reported vulnerability
* Using tox to help with local tests against different Python versions
* Drop dead Python 2.7 support, requiring Python 3.5+
* Fixed Python Requirement metadata setting requirement to Python >= 3.5

1.8.7 (2020-03-10)
------------------
Expand Down
6 changes: 2 additions & 4 deletions setup.py
Expand Up @@ -35,9 +35,9 @@
'Click>=6.0',
'requests',
'packaging',
'dparse>=0.4.1'
'dparse>=0.5.1'
],
python_requires=">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*",
python_requires=">=3.5",
license="MIT license",
zip_safe=False,
keywords='safety',
Expand All @@ -46,8 +46,6 @@
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
"Programming Language :: Python :: 2",
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
@@ -1,5 +1,5 @@
[tox]
envlist = py27, py35, py36, py37, py38
envlist = py35, py36, py37, py38

[testenv]
deps =
Expand Down

0 comments on commit 8881a4a

Please sign in to comment.