jenkins-bot has submitted this change and it was merged. ( https://gerrit.wikimedia.org/r/463731 )
Change subject: [bugfix] Require pydot>=1.2 for interwiki_graph ......................................................................
[bugfix] Require pydot>=1.2 for interwiki_graph
Bug: T75704 Change-Id: I76068da3a70c29321f50caee66fa8bdfb53d13d1 --- M HISTORY.rst M requirements.txt M setup.py 3 files changed, 3 insertions(+), 3 deletions(-)
Approvals: Dvorapa: Looks good to me, approved jenkins-bot: Verified
diff --git a/HISTORY.rst b/HISTORY.rst index 730b1cc..b1d1d36 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -4,6 +4,7 @@ Current release ---------------
+* pydot >= 1.2 is required for interwiki_graph * Enable start timestamp for EventStreams (T205121) * Re-enable notifications (T205184) * Use FutureWarning for warnings intended for end users (T191192) diff --git a/requirements.txt b/requirements.txt index 66019c6..095a838 100644 --- a/requirements.txt +++ b/requirements.txt @@ -34,7 +34,7 @@ mwoauth>=0.2.4,!=0.3.1
# core interwiki_graph.py: -git+https://github.com/nlhepler/pydot#egg=pydot-1.0.29 +pydot >= 1.2
# wikistats.py and scripts unicodecsv ; python_version < '3' diff --git a/setup.py b/setup.py index 8e0515e..6711e95 100644 --- a/setup.py +++ b/setup.py @@ -52,7 +52,7 @@ # Core library dependencies 'eventstreams': ['sseclient>=0.0.18'], 'isbn': ['python-stdnum'], - 'Graphviz': ['pydot>=1.0.28'], + 'Graphviz': ['pydot>=1.2'], 'Google': ['google>=1.7'], 'IRC': ['irc'], 'mwparserfromhell': ['mwparserfromhell>=0.3.3'], @@ -107,7 +107,6 @@ 'git+https://github.com/AlereDevices/lunatic-python.git#egg=lunatic-python', 'hg+https://bitbucket.org/TJG/pywin32#egg=pywin32', 'git+https://github.com/vasily-v-ryabov/pywinauto-64#egg=pywinauto', - 'git+https://github.com/nlhepler/pydot#egg=pydot-1.0.29', ]
if PYTHON_VERSION == (2, 7, 2):
pywikibot-commits@lists.wikimedia.org