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
hramezani committed Apr 7, 2021
1 parent ff2374c commit eb37046
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
fail-fast: false
max-parallel: 5
matrix:
python-version: ['3.5', '3.6', '3.7', '3.8', '3.9']
python-version: ['3.6', '3.7', '3.8', '3.9']

steps:
- uses: actions/checkout@v2
Expand Down
1 change: 1 addition & 0 deletions docs/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ Next Release (TBC)

- Dropped support for Django 3.0.

- Dropped support for Python 3.5.

2.2 (2019-12-05)
----------------
Expand Down
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ def read(*parts):
packages=find_packages(exclude=["tests", "tests.*"]),
include_package_data=True,
install_requires=["Django>=2.2"],
python_requires=">=3.5",
python_requires=">=3.6",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
Expand All @@ -36,7 +36,6 @@ def read(*parts):
"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",
Expand Down
4 changes: 1 addition & 3 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
[tox]
args_are_paths = false
envlist =
py{35,36,37,38,39}-django{22}
py{36,37,38,39}-django{31,32}
py{36,37,38,39}-django{22,31,32}
py{38,39}-djangomain

[testenv]
Expand All @@ -23,7 +22,6 @@ ignore_errors =

[gh-actions]
python =
3.5: py35
3.6: py36
3.7: py37
3.8: py38
Expand Down

0 comments on commit eb37046

Please sign in to comment.