Skip to content

Commit

Permalink
Dropped support for Python 3.5
Browse files Browse the repository at this point in the history
  • Loading branch information
smithdc1 committed Dec 7, 2020
1 parent eae597e commit 4e07737
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 8 deletions.
1 change: 0 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ python:
- 3.8
- 3.7
- 3.6
- 3.5
install: pip install tox-travis codecov
script: tox
after_success:
Expand Down
2 changes: 1 addition & 1 deletion CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ CHANGES

master (unreleased)
-------------------
- Dropped support for Python 2.7
- Dropped support for Python 2.7 and 3.5

4.0 (2020-01-04)
-----------------
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ for Django 3 and above, use ``django-robots>=4.0.0``.
Supported Python version
------------------------

* Python 3.5, 3.6, 3.7, 3.8
* Python 3.6, 3.7, 3.8

.. _install section: https://django-robots.readthedocs.io/en/latest/#installation
.. _robots exclusion protocol: http://en.wikipedia.org/wiki/Robots_exclusion_standard
Expand Down
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ def read(*parts):
description='Robots exclusion application for Django, complementing Sitemaps.',
author='Jannis Leidel',
author_email='[email protected]',
python_requires='>=3.5',
python_requires='>=3.6',
url='https://github.com/jazzband/django-robots/',
packages=find_packages('src'),
package_dir={'': 'src'},
Expand All @@ -39,7 +39,6 @@ def read(*parts):
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Software Development',
'Topic :: Software Development :: Libraries :: Application Frameworks',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Framework :: Django',
Expand Down
4 changes: 1 addition & 3 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,13 @@
envlist =
# list of supported Django/Python versioons:
# https://docs.djangoproject.com/en/3.0/faq/install/#what-python-version-can-i-use-with-django
py{35,36,37}-django111
py35-django{21,22}
py{36,37}-django111
py{36,37}-django{21,22,30,master}
py38-django{22,30}
py38-{lint,docs}

[travis]
python =
3.5: py35
3.6: py36
3.7: py37
3.8: py38
Expand Down

0 comments on commit 4e07737

Please sign in to comment.