Skip to content

Commit b121e8c

Browse files
jpulecatodorov
authored andcommitted
Remove Python 3.5 Support
It's be EOL'd since Sept 2020, so time to ditch it.
1 parent 9b50595 commit b121e8c

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

setup.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,6 @@
3232
'Operating System :: Unix',
3333
'Topic :: Software Development :: Quality Assurance',
3434
'Programming Language :: Python :: 3',
35-
'Programming Language :: Python :: 3.5',
3635
'Programming Language :: Python :: 3.6',
3736
'Programming Language :: Python :: 3.7',
3837
'Programming Language :: Python :: 3.8',

tox.ini

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ envlist =
99
pylint
1010
readme
1111
py{36}-django{111,20,-master}
12-
py{35,36,37}-django22
12+
py{36,37}-django22
1313
py{36,37,38}-django{30,31}
1414

1515
[testenv]
@@ -20,7 +20,7 @@ commands =
2020
pylint: pylint --rcfile=tox.ini -d missing-docstring,too-many-branches,too-many-return-statements,too-many-ancestors,fixme --ignore=tests pylint_django setup
2121
readme: bash -c \'python setup.py -q sdist && twine check dist/*\'
2222
py{36}-django{111,20,-master}: coverage run pylint_django/tests/test_func.py -v
23-
py{35,36,37}-django22: coverage run pylint_django/tests/test_func.py -v
23+
py{36,37}-django22: coverage run pylint_django/tests/test_func.py -v
2424
py{36,37,38}-django{30,31}: coverage run pylint_django/tests/test_func.py -v
2525
clean: find . -type f -name '*.pyc' -delete
2626
clean: find . -type d -name __pycache__ -delete
@@ -47,7 +47,7 @@ whitelist_externals =
4747
django_not_installed: bash
4848
readme: bash
4949
py{36}-django{111,20,-master}: coverage
50-
py{35,36,37}-django22: coverage
50+
py{36,37}-django22: coverage
5151
py{36,37,38}-django{30,31}: coverage
5252
clean: find
5353
clean: rm

0 commit comments

Comments
 (0)