jenkins-bot has submitted this change and it was merged. Change subject: [IMPROV] Use newer version of unicodecsv again ......................................................................
[IMPROV] Use newer version of unicodecsv again Version 0.14.0 of `unicodecsv` is not compatible with Python 2.6 so that with f4ebbf92 it installed 0.13.0 (the version before that) on Python 2.6 systems. But with 0.14.1 the compatibility was restored so that we only need to skip 0.14.0 installs. Bug: T113222 Change-Id: I46ee49a95ea0491130f29d21bbc59e1610c72adf --- M requirements.txt M setup.py 2 files changed, 2 insertions(+), 2 deletions(-) Approvals: John Vandenberg: Looks good to me, approved jenkins-bot: Verified diff --git a/requirements.txt b/requirements.txt index c7db758..827c7e0 100644 --- a/requirements.txt +++ b/requirements.txt @@ -45,7 +45,7 @@ git+https://github.com/nlhepler/pydot#egg=pydot-1.0.29 # wikistats.py and scripts -unicodecsv<=0.13 ; python_version < '2.7' +unicodecsv!=0.14.0 ; python_version < '2.7' unicodecsv ; python_version < '3' and python_version >= '2.7' # cosmetic_changes and scripts/isbn diff --git a/setup.py b/setup.py index 2a2d63f..65d1b13 100644 --- a/setup.py +++ b/setup.py @@ -40,7 +40,7 @@ # the irc module has no Python 2.6 support since 10.0 irc_dep = 'irc==8.9' if sys.version_info < (2, 7) else 'irc' -csv_dep = 'unicodecsv<=0.13' if PYTHON_VERSION < (2, 7) else 'unicodecsv' +csv_dep = 'unicodecsv!=0.14.0' if PYTHON_VERSION < (2, 7) else 'unicodecsv' extra_deps = { # Core library dependencies -- To view, visit https://gerrit.wikimedia.org/r/240574 To unsubscribe, visit https://gerrit.wikimedia.org/r/settings Gerrit-MessageType: merged Gerrit-Change-Id: I46ee49a95ea0491130f29d21bbc59e1610c72adf Gerrit-PatchSet: 1 Gerrit-Project: pywikibot/core Gerrit-Branch: master Gerrit-Owner: XZise <[email protected]> Gerrit-Reviewer: John Vandenberg <[email protected]> Gerrit-Reviewer: Ladsgroup <[email protected]> Gerrit-Reviewer: jenkins-bot <> _______________________________________________ MediaWiki-commits mailing list [email protected] https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits
