Skip to content

Commit

Permalink
Drop python 3.5 support
Browse files Browse the repository at this point in the history
  • Loading branch information
ArmaanT committed Nov 27, 2019
1 parent c77a135 commit 4151546
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions setup.py
Expand Up @@ -45,11 +45,11 @@ def run(self):
classifiers=[
'Framework :: Django',
'Programming Language :: Python',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
],
python_requires='>=3.5',
python_requires='>=3.6',
cmdclass={
'verify': VerifyVersionCommand,
}
Expand Down
4 changes: 2 additions & 2 deletions tox.ini
@@ -1,9 +1,9 @@
[tox]
envlist =
lint,
py35-django{20,21,22},
py36-django{20,21,22},
py37-django{20,21,22}
py37-django{20,21,22},
py38-django{20,21,22},

[testenv]
commands = coverage run -a runtests.py
Expand Down

0 comments on commit 4151546

Please sign in to comment.