|
10 | 10 | SOURCE_DIR = os.path.join(ROOT_DIR)
|
11 | 11 |
|
12 | 12 | requirements = [
|
13 |
| - 'requests >= 2.14.2, != 2.18.0', |
14 | 13 | 'six >= 1.4.0',
|
15 | 14 | 'websocket-client >= 0.32.0',
|
16 |
| - 'docker-pycreds >= 0.3.0' |
| 15 | + 'docker-pycreds >= 0.3.0', |
| 16 | + 'requests >= 2.14.2, != 2.18.0', |
17 | 17 | ]
|
18 | 18 |
|
19 | 19 | extras_require = {
|
|
27 | 27 | # Python 3.6 is only compatible with v220 ; Python < 3.5 is not supported
|
28 | 28 | # on v220 ; ALL versions are broken for v222 (as of 2018-01-26)
|
29 | 29 | ':sys_platform == "win32" and python_version < "3.6"': 'pypiwin32==219',
|
30 |
| - ':sys_platform == "win32" and python_version >= "3.6"': 'pypiwin32==220', |
| 30 | + ':sys_platform == "win32" and python_version >= "3.6"': 'pypiwin32==223', |
| 31 | + |
| 32 | + # urllib3 drops support for Python 3.3 in 1.23 |
| 33 | + ':python_version == "3.3"': 'urllib3 < 1.23', |
31 | 34 |
|
32 | 35 | # If using docker-py over TLS, highly recommend this option is
|
33 | 36 | # pip-installed or pinned.
|
|
38 | 41 | # installing the extra dependencies, install the following instead:
|
39 | 42 | # 'requests[security] >= 2.5.2, != 2.11.0, != 2.12.2'
|
40 | 43 | 'tls': ['pyOpenSSL>=0.14', 'cryptography>=1.3.4', 'idna>=2.0.0'],
|
| 44 | + |
41 | 45 | }
|
42 | 46 |
|
43 | 47 | version = None
|
|
81 | 85 | 'Programming Language :: Python :: 3.4',
|
82 | 86 | 'Programming Language :: Python :: 3.5',
|
83 | 87 | 'Programming Language :: Python :: 3.6',
|
| 88 | + 'Programming Language :: Python :: 3.7', |
84 | 89 | 'Topic :: Utilities',
|
85 | 90 | 'License :: OSI Approved :: Apache Software License',
|
86 | 91 | ],
|
|
0 commit comments