File tree Expand file tree Collapse file tree 4 files changed +5
-3
lines changed
atlassian_jwt_auth/contrib/tests/aiohttp Expand file tree Collapse file tree 4 files changed +5
-3
lines changed Original file line number Diff line number Diff line change 4
4
- " 2.7"
5
5
- " 3.5"
6
6
- " 3.6"
7
+ - " 3.7"
7
8
install :
8
- - if [[ $TRAVIS_PYTHON_VERSION == 3.5 || $TRAVIS_PYTHON_VERSION == 3.6 ]]; then pip install aiohttp==2.0.6 asynctest==0.10 .0; fi
9
+ - if [[ $TRAVIS_PYTHON_VERSION == 3.5 || $TRAVIS_PYTHON_VERSION == 3.6 || $TRAVIS_PYTHON_VERSION == 3.7 ]]; then pip install aiohttp==3.6.2 asynctest==0.13 .0; fi
9
10
- pip install -q pycodestyle==2.3.1
10
11
script :
11
12
- pycodestyle .
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ def _get_session(self):
21
21
22
22
resp = session .get .return_value
23
23
resp .headers = CIMultiDict ({"content-type" : PEM_FILE_TYPE })
24
- resp .text . return_value = 'i-am-a-public-key'
24
+ resp .text = CoroutineMock ( return_value = 'i-am-a-public-key' )
25
25
return session
26
26
27
27
Original file line number Diff line number Diff line change @@ -15,6 +15,7 @@ classifier =
15
15
Programming Language :: Python :: 3
16
16
Programming Language :: Python :: 3.5
17
17
Programming Language :: Python :: 3.6
18
+ Programming Language :: Python :: 3.7
18
19
License :: OSI Approved :: MIT License
19
20
20
21
[files]
Original file line number Diff line number Diff line change 1
1
nose
2
2
mock
3
3
flask<1.1.0
4
- Django== 1.11
4
+ Django>= 1.11,<2.0.0
5
5
atlassian-httptest==0.8
You can’t perform that action at this time.
0 commit comments