Skip to content

Commit a67c8a5

Browse files
committed
Add support for python 3.6
1 parent f5ef888 commit a67c8a5

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

.github/workflows/python-package.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
strategy:
1616
fail-fast: false
1717
matrix:
18-
python-version: [3.7, 3.8, 3.9]
18+
python-version: [3.6, 3.7, 3.8, 3.9]
1919

2020
steps:
2121
- uses: actions/checkout@v2

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
'django-constance>=2,<3',
4646
'django-waffle>=2,<3',
4747
],
48-
python_requires='>=3.7',
48+
python_requires='>=3.6',
4949
extras_require=extras_require,
5050
packages=find_packages(exclude=['tests']),
5151
include_package_data=True,

tox.ini

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
11
[tox]
22
envlist=
3-
py{37,38,39}-dj22-drf310-tests
4-
py{37,38,39}-dj{22,31,32}-drf{311,312}-tests
3+
py{36,37,38,39}-dj22-drf310-tests
4+
py{36,37,38,39}-dj{22,31,32}-drf{311,312}-tests
55
py39-djmain-drf312-tests
66
docs
77
lint
88

99
; [gh-actions]
1010
; python=
11+
; 3.6: py36
1112
; 3.7: py37
1213
; 3.8: py38, docs, lint
1314
; 3.9: py39

0 commit comments

Comments
 (0)