Skip to content

Commit 4c25d31

Browse files
authored
Merge pull request #3 from bugov/fixes
drop py35, py36 support
2 parents e96c828 + e043852 commit 4c25d31

File tree

3 files changed

+4
-8
lines changed

3 files changed

+4
-8
lines changed

.travis.yml

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,8 @@
11
language: python
22
python:
3-
- "3.5"
4-
- "3.6"
5-
- "3.7"
63
- "3.8"
74
- "3.9"
8-
- "3.10"
95
install:
10-
- pip install -r requirements.txt
6+
- pip install -r requirements-dev.txt
117
script:
12-
- tox
8+
- tox -e $(echo py$TRAVIS_PYTHON_VERSION | tr -d .)

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ django-auto-logout
66

77
Auto logout a user after specific time in Django.
88

9-
Works with Python ≥ 3.5, Django ≥ 3.0.
9+
Works with Python ≥ 3.7, Django ≥ 3.0.
1010

1111
Installation
1212
------------

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tox]
22
skipsdist = True
3-
envlist = py35, py36, py37, py38, py39, py310
3+
envlist = py37, py38, py39, py310
44

55
[testenv]
66
deps= -r{toxinidir}/requirements-dev.txt

0 commit comments

Comments
 (0)