From f99597f19236e82d6f6caf9567deb4389a8fe687 Mon Sep 17 00:00:00 2001 From: George Lund Date: Tue, 5 Dec 2017 16:29:17 +0000 Subject: [PATCH] Update dependency to use our fork of odfpy. - this is to fix a bug in the odfpy library where it can produce non-well-formed XML. - note that in order for this requirement to be satisfied, you will have to run pip with the --process-dependency-links option - or you will have to manually update your requirements files to include the location of the forked library. https://trello.com/c/EgBoNeW9/145-certain-control-characters-in-suppliers-evidence-corrupts-the-ods-that-buyers-download --- dmutils/__init__.py | 2 +- setup.py | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/dmutils/__init__.py b/dmutils/__init__.py index e9e2e9e4..7c624799 100644 --- a/dmutils/__init__.py +++ b/dmutils/__init__.py @@ -4,4 +4,4 @@ import flask_featureflags # noqa -__version__ = '30.0.0' +__version__ = '30.0.1' diff --git a/setup.py b/setup.py index 5041f1bb..c02c8ae5 100644 --- a/setup.py +++ b/setup.py @@ -22,6 +22,7 @@ long_description=__doc__, packages=find_packages(), include_package_data=True, + dependency_links=['git+https://github.com/alphagov/odfpy.git@ee4482a#egg=odfpy-1.3.6dev'], install_requires=[ 'Flask-FeatureFlags==0.6', 'Flask-Script==2.0.5', @@ -35,7 +36,7 @@ 'mandrill==1.0.57', 'monotonic==0.3', 'notifications-python-client==4.1.0', - 'odfpy==1.3.3', + 'odfpy==1.3.6dev', 'python-json-logger==0.1.4', 'pytz==2015.4', 'pyyaml==3.11',