forked from zhmcclient/zhmccli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
minimum-constraints.txt
197 lines (170 loc) · 6.33 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
# Pip constraints file for runtime and development.
#
# This constraints file specifies constraints that match the minimum versions
# specified in the requirements files for runtime and development. The reason
# for this approach is that in the CI systems, we want to be able to test with
# the minimum package versions in order to catch any incorrect minimum versions
# (see zhmcclient issue #199 as one example where a minimum version was
# missing).
# The versions specified in this file were the latest versions released on Pypi
# as of zhmcclient v0.9.0 (2016-12-27, see Travis CI run #576
# https://travis-ci.org/zhmcclient/python-zhmcclient/builds/186986898).
# Make sure that the package versions in minimum-constraints.txt are also
# the minimum versions required in requirements.txt and dev-requirements.txt.
# 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)
# pbr 1.8.1 2015-10-07 (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
# pbr 1.8.0 2015-09-14
# * 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
# pbr 1.10.0 2016-05-23
# * 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)
# Base dependencies (must be consistent with base-requirements.txt)
pip==9.0.1
setuptools==33.1.1
wheel==0.29.0
# Direct dependencies for runtime (must be consistent with requirements.txt)
# TODO: Re-enable zhmcclient 1.1.0 once released
# zhmcclient==1.1.0
click==7.0
click-repl==0.1.0
click-spinner==0.1.6
progressbar2==3.12.0
six==1.14.0
tabulate==0.8.1
pyreadline==2.1 #; sys_platform == "win32"
# prompt-toolkit is pulled in by click-repl.
prompt-toolkit==1.0.15; python_version == '2.7'
prompt-toolkit==2.0.1; python_version >= '3.5'
# Indirect dependencies for runtime (must be consistent with requirements.txt)
certifi==2019.9.11
chardet==3.0.3
decorator==4.0.11
docopt==0.6.2
idna==2.5
python-utils==2.0.1
pytz==2016.10
requests==2.20.1
stomp.py==4.1.23
urllib3==1.23
wcwidth==0.1.7
# Direct dependencies for development (must be consistent with dev-requirements.txt)
# Unit test (imports into testcases):
pytest==4.3.1; python_version <= '3.6'
pytest==4.4.0; python_version >= '3.7'
# Coverage reporting (no imports, invoked via coveralls script):
coverage==5.0; python_version == '2.7' or python_version >= '3.5'
pytest-cov==2.7.0; python_version == '2.7' or python_version >= '3.5'
# 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'
# Sphinx (no imports, invoked via sphinx-build script):
Sphinx==1.7.6
sphinx-git==10.1.1
GitPython==2.1.1
gitdb2==2.0.6; python_version == "2.7" # used by sphinx-git and GitPython
gitdb==4.0.5; python_version >= "3.5" # used by sphinx-git and GitPython
smmap==3.0.1; python_version >= "3.5" # used by gitdb
Pygments==2.1.3; python_version == '2.7'
Pygments==2.5.1; python_version >= '3.5'
sphinx-rtd-theme==0.5.0
# readme-renderer (used by twine, uses Pygments)
# readme-renderer 25.0 or higher is needed to address issue on Windows with py39
readme-renderer==23.0; python_version == '2.7'
readme-renderer==25.0; python_version >= '3.5'
# PyLint (no imports, invoked via pylint script) - does not support py3:
pylint==1.6.4; python_version == '2.7'
pylint==2.5.0; python_version >= '3.6'
astroid==1.4.9; python_version == '2.7'
astroid==2.4.0; python_version >= '3.6'
# typed-ast is used by astroid on py34..py37
typed-ast==1.4.0; python_version >= '3.6' and python_version <= '3.7' 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'
platformdirs==2.2.0; python_version >= '3.6'
wrapt==1.11.2
# Flake8 (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
# Unit test (indirect dependencies):
pluggy==0.7.1; python_version == '2.7'
pluggy==0.7.1; python_version >= '3.5' and python_version <= '3.6'
pluggy==0.13.0; python_version >= '3.7'
# Package dependency management tools (not used by any make rules)
pipdeptree==2.0.0
pip-check-reqs==2.0.4
# Indirect dependencies for development (must be consistent with dev-requirements.txt)
alabaster==0.7.9
atomicwrites==1.2.1
attrs==18.2.0
Babel==2.3.4
backports.functools-lru-cache==1.3; python_version == "2.7"
bleach==2.1.4
colorama==0.4.0; sys_platform == "win32" and python_version == "2.7"
colorama==0.4.0; sys_platform == "win32" and python_version >= "3.5"
configparser==4.0.2
contextlib2==0.6.0
coverage==4.0.3
docutils==0.13.1
enum34==1.1.6; python_version == "2.7"
funcsigs==1.0.2; python_version == "2.7"
futures==3.3.0; python_version == "2.7"
gitdb2==2.0.0
imagesize==0.7.1
importlib-metadata==0.12
iniconfig==1.1.1; python_version >= "3.6" # used by pytest since its 6.0.0 which requires py36
isort==4.2.5
Jinja2==2.8
keyring==18.0.0
MarkupSafe==0.23
mccabe==0.5.3
more-itertools==5.0.0
packaging==19.2
pathlib2==2.2.1
pkginfo==1.4.1
py==1.5.1
pyparsing==2.4.5
requests-toolbelt==0.7.0
rfc3986==1.4.0; python_version >= "3.6" # used by twine since its 3.2.0 which requires py36
scandir==1.9.0
singledispatch==3.4.0.3; python_version == "2.7"
smmap2==2.0.1
snowballstemmer==1.2.1
sphinxcontrib-websupport==1.1.2
sphinxcontrib-serializinghtml==1.1.4 # used by sphinxcontrib-websupport
toml==0.10.0 # used by pylint and pytest since some version
tqdm==4.28.1
typing==3.6.1
webencodings==0.5.1
zipp==0.5.2