forked from zhmcclient/python-zhmcclient
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathminimum-constraints.txt
276 lines (246 loc) · 8.02 KB
/
minimum-constraints.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
# Pip constraints file.
#
# This file specifies constraints that define the minimum versions of any
# direct and indirect dependent packages for installation and development of
# the project.
# They are used when setting up test environments with the minimum versions of
# any dependent packages.
# Dependencies for installation with Pip (must be installed in a separate pip call)
#
# Info: OS-installed package versions for some Linux distros:
# * RHEL/CentOS 7.4.1708:
# Python 2.7.5 2013-05-15
# pip 8.1.2 2016-05-11 (epel)
# setuptools 0.9.8 2013-07-25
# wheel 0.24.0 2014-07-06 (epel)
# * Ubuntu 16.04.03:
# Python 2.7.12 2016-11-19
# pip 8.1.1 2016-03-17
# setuptools 20.7.0 2016-04-10
# wheel 0.29.0 2016-02-06
# * Ubuntu 17.04:
# Python 2.7.12 2016-11-19
# pip 9.0.1 2016-11-06
# setuptools 33.1.1 2017-01-16
# wheel 0.29.0 2016-02-06
# * Ubuntu 18.04:
# Python 2.7.15
# Python3 3.6.5
# pip 9.0.1 (py2+py3)
# setuptools 39.0.1 (py2+py3)
# wheel 0.30.0 (py2+py3)
# * Ubuntu 19.04:
# Python 2.7.16
# Python3 3.7.3
# pip 18.1 (py2+py3)
# setuptools 40.8.0 (py2+py3)
# wheel 0.32.3 (py2+py3)
# * Versions installed on Python 3.8 on Appveyor
# Python38 3.8.0
# pip 19.3.1
# setuptools 41.6.0
# wheel 0.33.6
#
# Info: Python version supported by base packages (added / removed)
# * Python 2.7 support:
# pip ?
# setuptools ? / 45.0.0
# wheel ?
# * Python 3.4 support:
# pip ? / 19.2
# setuptools ? / 44.0.0
# wheel ? / 0.34.0
# * Python 3.5 support:
# pip 8.0
# setuptools 18.3
# wheel 0.30.0
# * Python 3.6 support:
# pip 10.0.0
# setuptools 34.0.0
# wheel 0.30.0
# * Python 3.7 support:
# pip 18.1
# setuptools 40.6.0
# wheel 0.32.0
# * Python 3.8 support:
# pip 19.3.1
# setuptools 41.5.0
# wheel 0.33.5
# For the base packages, we use the versions from Ubuntu 18.04 as a general
# minimum, and then increase it to the first version that introduced support
# for a particular Python version:
pip==9.0.1; python_version <= '3.5'
pip==10.0.0; python_version == '3.6'
pip==18.1; python_version == '3.7'
pip==19.3.1; python_version >= '3.8'
setuptools==39.0.1; python_version <= '3.6'
setuptools==40.6.0; python_version == '3.7'
setuptools==41.5.0; python_version >= '3.8'
wheel==0.30.0; python_version <= '3.6'
wheel==0.32.0; python_version == '3.7'
wheel==0.33.5; python_version >= '3.8'
# Direct dependencies for installation (must be consistent with requirements.txt)
decorator==4.0.11
pytz==2016.10
requests==2.20.1
six==1.14.0
stomp.py==4.1.23
immutable-views==0.6.0
# Indirect dependencies for runtime (must be consistent with requirements.txt)
certifi==2019.9.11
chardet==3.0.3
docopt==0.6.2
idna==2.5
urllib3==1.23
# Direct dependencies for development (must be consistent with dev-requirements.txt)
# PyYAML pulled in by zhmcclient examples and by python-coveralls
PyYAML==5.3; python_version == '2.7'
PyYAML==5.1; python_version >= '3.5' and python_version < '3.8'
PyYAML==5.1.2; python_version >= '3.8'
# Unit test (imports into testcases):
packaging==17.0
funcsigs==1.0.2; python_version == '2.7'
pytest==4.3.1; python_version <= '3.6'
pytest==4.4.0; python_version >= '3.7'
testfixtures==6.9.0
colorama==0.3.9; python_version == '2.7'
colorama==0.4.0; python_version >= '3.5'
importlib-metadata==0.12; python_version <= '3.7'
mock==2.0.0
# pytz: covered in direct deps for installation
# requests: covered in direct deps for installation
requests-mock==1.6.0
requests-toolbelt==0.7.0
# Virtualenv
virtualenv==14.0.0; python_version == '2.7'
virtualenv==16.1.0; python_version >= '3.5' and python_version < '3.8'
virtualenv==20.0.0; python_version >= '3.8' # requires six<2,>=1.12.0
# Unit test (indirect dependencies):
pluggy==0.7.1; python_version >= '2.7' and python_version <= '3.6'
pluggy==0.13.0; python_version >= '3.7'
# decorator: covered in direct deps for installation
yamlloader==0.5.5
# FormEncode is used for xml comparisons in unit test
FormEncode==1.3.1
# Coverage reporting (no imports, invoked via coveralls script):
coverage==5.0
pytest-cov==2.7.0
# handled by dev-requirements.txt: git+https://github.com/andy-maier/coveralls-python.git@andy/add-py27#egg=coveralls; python_version == '2.7'
coveralls==2.1.2; python_version >= '3.5'
# Safety CI by pyup.io
safety==1.8.7; python_version == '2.7'
safety==1.9.0; python_version >= '3.5'
dparse==0.4.1; python_version == '2.7'
dparse==0.5.1; python_version >= '3.5'
# Tox
tox==2.5.0
# Sphinx (no imports, invoked via sphinx-build script):
Sphinx==1.7.6
sphinx-git==10.1.1
GitPython==2.1.1
sphinxcontrib-fulltoc==1.2.0
sphinxcontrib-websupport==1.1.2
Pygments==2.1.3
sphinx-rtd-theme==0.5.0
autodocsumm==0.1.13
# PyLint (no imports, invoked via pylint script):
pylint==1.6.4; python_version == '2.7'
pylint==2.5.2; python_version >= '3.6'
astroid==1.4.9; python_version == '2.7'
astroid==2.4.0; python_version >= '3.6'
typed-ast==1.4.0; python_version >= '3.6' and python_version < '3.8' and implementation_name=='cpython'
# Workaround: lazy-object-proxy is used by astroid
lazy-object-proxy==1.4.3; python_version == '2.7'
lazy-object-proxy==1.4.3; python_version >= '3.6'
# Flake8 and dependents (no imports, invoked via flake8 script):
flake8==3.8.0
mccabe==0.6.0
pycodestyle==2.6.0
pyflakes==2.2.0
entrypoints==0.3.0
functools32==3.2.3.post2; python_version == '2.7' # technically: python_version < '3.2'
# Twine (no imports, invoked via twine script):
twine==1.8.1
readme-renderer==23.0
# Jupyter Notebook (no imports, invoked via jupyter script):
jupyter==1.0.0
ipython==5.1.0; python_version == '2.7'
ipython==7.0; python_version == '3.5'
ipython==7.10; python_version >= '3.6'
ipykernel==4.5.2
ipython_genutils==0.1.0
ipywidgets==5.2.2
jupyter_console==5.0.0; python_version == '2.7'
jupyter_console==6.0.0; python_version >= '3.5'
jupyter_client==4.4.0
jupyter_core==4.2.1
nbconvert==5.0.0
nbformat==4.2.0
notebook==4.3.1
pyrsistent==0.14.0
# Pywin32 is used (at least?) by jupyter.
# Pywin32 version 226 needs to be excluded, see issue #1946.
# Pywin32 version 222 is inconsistent in its 32-bit/64-bit support on py37
# Pywin32 version 225+ provides wheel files for py38, but does not advertise
# py38 on Pypi. That causes pip to fail with any use of it in the constraints
# file.
pywin32==222; sys_platform == 'win32' and python_version == '2.7'
pywin32==222; sys_platform == 'win32' and python_version >= '3.5' and python_version <= '3.6'
pywin32==223; sys_platform == 'win32' and python_version == '3.7'
# TODO: Re-enable once pywin32 fixes its Python version advertising on Pypi
# (see issue #1975).
# pywin32==225; sys_platform == 'win32' and python_version >= '3.8'
pyzmq==16.0.4; python_version <= '3.8'
pyzmq==20.0.0; python_version >= '3.9'
# Aditional dependencies of examples
tabulate==0.8.1
progressbar2==3.12.0
# Package dependency management tools (not used by any make rules)
pipdeptree==2.0.0
pip-check-reqs==2.0.4
pywinpty==0.5; os_name == "nt" and python_version == '2.7'
# Indirect dependencies for develop (not in dev-requirements.txt)
alabaster==0.7.9
appnope==0.1.0
args==0.1.0
Babel==2.3.4
backports-abc==0.5
backports.functools-lru-cache==1.5; python_version < "3.3"
backports.shutil-get-terminal-size==1.0.0
backports.ssl-match-hostname==3.5.0.1
bleach==2.1.4
clint==0.5.1
configparser==4.0.2
docutils==0.13.1
enum34==1.1.6; python_version < "3.4"
gitdb2==2.0.0
html5lib==0.999999999
imagesize==0.7.1
isort==4.2.15
Jinja2==2.8
jsonschema==2.5.1
MarkupSafe==0.23
mistune==0.8.1
pandocfilters==1.4.1
pathlib2==2.2.1
pexpect==4.2.1
pickleshare==0.7.4
pkginfo==1.4.1
ptyprocess==0.5.1
py==1.5.1
python-dateutil==2.6.0
qtconsole==4.2.1
scandir==1.9.0
simplegeneric==0.8.1
singledispatch==3.4.0.3; python_version < "3.4"
smmap2==2.0.1
snowballstemmer==1.2.1
terminado==0.6
testpath==0.3
tornado==4.4.2
tqdm==4.11.2
traitlets==4.3.1
typing==3.6.1
webencodings==0.5.1
widgetsnbextension==1.2.6
wrapt==1.11.2