File tree 2 files changed +6
-14
lines changed
2 files changed +6
-14
lines changed Original file line number Diff line number Diff line change 7
7
- 3.4
8
8
- 3.5
9
9
- 3.6
10
- # These are allowed to fail
11
- - ' 3.5-dev' # 3.5 development branch
12
- - ' 3.6-dev' # 3.6 development branch
13
- - ' nightly' # currently points to 3.7-dev
14
- - ' pypy'
15
- - ' pypy3.3-5.2-alpha1'
16
10
17
11
matrix :
18
12
fast_finish : true
19
- allow_failures :
20
- - python : ' 3.5-dev' # 3.5 development branch
21
- - python : ' 3.6-dev' # 3.6 development branch
22
- - python : ' nightly'
23
- - python : ' pypy'
24
- - python : ' pypy3.3-5.2-alpha1'
25
13
26
14
cache : pip
27
15
notifications :
Original file line number Diff line number Diff line change 26
26
.. _`Github`: https://github.com/GetStream/stream-python
27
27
'''
28
28
29
+ requests = 'requests>=2.3.0,<3'
30
+
31
+ if sys .version_info < (2 , 7 , 9 ):
32
+ requests = 'requests[security]>=2.4.1,<3'
33
+
29
34
install_requires = [
30
35
'pyjwt==1.3.0' ,
31
- ' requests>=2.2.1' ,
36
+ requests ,
32
37
'six>=1.8.0' ,
33
38
'httpsig==1.1.2'
34
39
]
35
40
36
-
37
41
class PyTest (TestCommand ):
38
42
39
43
def finalize_options (self ):
You can’t perform that action at this time.
0 commit comments