Skip to content

Commit

Permalink
Merge 4242e35 into f240c7c
Browse files Browse the repository at this point in the history
  • Loading branch information
francoisfreitag committed Mar 26, 2021
2 parents f240c7c + 4242e35 commit cea6ebe
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 6 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
Unreleased
==========

- Dropped support for Python 3.5.

0.9.3 - 2019-10-31
==================

Expand Down
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,13 +36,12 @@
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Topic :: Utilities",
],
python_requires=">=3.5",
python_requires=">=3.6",
install_requires=[
"Django>=1.11",
"python-dateutil>=2.1",
Expand Down
8 changes: 4 additions & 4 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
[tox]
envlist =
lint
py{35,36}-django111
py{35,36,37}-django21
py{35,36,37}-django22
py36-django111
py{36,37}-django21
py{36,37}-django22
py{36,37,38}-django30
py{36,37,38}-djangomaster

Expand All @@ -20,7 +20,7 @@ deps =
[testenv:lint]
basepython = python3
commands =
black --target-version py35 --check --diff .
black --target-version py36 --check --diff .
flake8
isort --check-only --diff
{envpython} -m django check --settings=tests.settings
Expand Down

0 comments on commit cea6ebe

Please sign in to comment.