Skip to content

Commit

Permalink
Drop python 3.5 support.
Browse files Browse the repository at this point in the history
  • Loading branch information
feanil committed Nov 9, 2020
1 parent 60ea41f commit e44cc9f
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 12 deletions.
9 changes: 4 additions & 5 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
language: python

python:
- 3.5
- 3.8

env:
Expand All @@ -17,14 +16,14 @@ env:

matrix:
include:
- python: 3.5
- python: 3.8
env: TOXENV=quality
- python: 3.5
- python: 3.8
env: TOXENV=docs
- python: 3.5
- python: 3.8
env: TOXENV=pii_check
exclude:
- python: 3.5
- python: 3.8
env: TOXENV=django30

cache:
Expand Down
7 changes: 7 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,13 @@ Unreleased

*

[1.0.0] - 2020-11-09
~~~~~~~~~~~~~~~~~~~~

Removed
--------

* Dropped support for Python 3.5

[0.2.0] - 2020-11-06
~~~~~~~~~~~~~~~~~~~~
Expand Down
2 changes: 1 addition & 1 deletion event_routing_backends/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
Various backends for receiving edX LMS events..
"""

__version__ = '0.2.0'
__version__ = '1.0.0'

default_app_config = 'event_routing_backends.apps.EventRoutingBackendsConfig' # pylint: disable=invalid-name
4 changes: 0 additions & 4 deletions requirements/constraints.txt
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,3 @@

# code-annotations currently restricts to Django<2.3
Django<2.3

# tox==3.20.0 currently pins importlib-metadata to < 2 which breaks make upgrade beacuse a newer version is available.
# This can be removed once we no longer need to support python 3.5
importlib-metadata==1.7.0
1 change: 0 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,6 @@ def is_requirement(line):
'License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)',
'Natural Language :: English',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.8',
],
)
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = {py35,py38}-django22, py38-django30
envlist = {py38}-{django22,django30}

[doc8]
; D001 = Line too long
Expand Down

0 comments on commit e44cc9f

Please sign in to comment.