File tree Expand file tree Collapse file tree 2 files changed +11
-1
lines changed Expand file tree Collapse file tree 2 files changed +11
-1
lines changed Original file line number Diff line number Diff line change 14
14
strategy :
15
15
matrix :
16
16
python-version :
17
+ - ' 3.6'
17
18
- ' 3.7'
18
19
- ' 3.8'
19
20
- ' 3.9'
36
37
- name : Install dependencies
37
38
run : python -m pip install --upgrade codecov tox
38
39
40
+ - name : Install tox-py
41
+ if : ${{ matrix.python-version == '3.6' }}
42
+ run : python -m pip install --upgrade tox-py
43
+
39
44
- name : Run tox targets for ${{ matrix.python-version }}
45
+ if : ${{ matrix.python-version != '3.6' }}
40
46
run : tox run -f py$(echo ${{ matrix.python-version }} | tr -d .)
41
47
48
+ - name : Run tox targets for ${{ matrix.python-version }}
49
+ if : ${{ matrix.python-version == '3.6' }}
50
+ run : tox --py current
51
+
42
52
- name : Run extra tox targets
43
53
if : ${{ matrix.python-version == '3.9' }}
44
54
run : |
Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ classifiers = [
33
33
" Programming Language :: Python :: 3 :: Only" ,
34
34
" Topic :: Internet :: WWW/HTTP" ,
35
35
]
36
- requires-python = " >=3.7 "
36
+ requires-python = " >=3.6 "
37
37
dependencies = [
38
38
" django>=3.0" ,
39
39
' backports.zoneinfo;python_version<"3.9"' ,
You can’t perform that action at this time.
0 commit comments