File tree 3 files changed +2
-11
lines changed
3 files changed +2
-11
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'
18
17
- ' 3.7'
19
18
- ' 3.8'
20
19
- ' 3.9'
36
35
- name : Install dependencies
37
36
run : python -m pip install --upgrade codecov tox
38
37
39
- - name : Install tox-py
40
- if : ${{ matrix.python-version == '3.6' }}
41
- run : python -m pip install --upgrade tox-py
42
-
43
38
- name : Run tox targets for ${{ matrix.python-version }}
44
- if : ${{ matrix.python-version != '3.6' }}
45
39
run : tox run -f py$(echo ${{ matrix.python-version }} | tr -d .)
46
40
47
- - name : Run tox targets for ${{ matrix.python-version }}
48
- if : ${{ matrix.python-version == '3.6' }}
49
- run : tox --py current
50
-
51
41
- name : Run extra tox targets
52
42
if : ${{ matrix.python-version == '3.9' }}
53
43
run : |
Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ classifiers = [
32
32
" Programming Language :: Python :: 3 :: Only" ,
33
33
" Topic :: Internet :: WWW/HTTP" ,
34
34
]
35
- requires-python = " >=3.6 "
35
+ requires-python = " >=3.7 "
36
36
dependencies = [
37
37
" django>=3.0" ,
38
38
' backports.zoneinfo;python_version<"3.9"' ,
Original file line number Diff line number Diff line change @@ -93,6 +93,7 @@ def pytest_configure(config):
93
93
# import rest_framework before pytest re-adds the package root directory.
94
94
import rest_framework
95
95
package_dir = os .path .join (os .getcwd (), 'rest_framework' )
96
+ print ('TOTO' , rest_framework .__file__ )
96
97
assert not rest_framework .__file__ .startswith (package_dir )
97
98
98
99
# Manifest storage will raise an exception if static files are not present (ie, a packaging failure).
You can’t perform that action at this time.
0 commit comments