This is an automated email from the git hooks/post-receive script. tille pushed a commit to branch master in repository python-schema-salad.
commit ba50de101d33315db5073802756aec8added81ca Author: Andreas Tille <[email protected]> Date: Fri Dec 22 09:02:58 2017 +0100 Allow python-avro >= 1.8.1 (instead of == 1.8.1) --- debian/changelog | 7 +++++++ debian/patches/allow_avro_gt_1.8.1.patch | 17 +++++++++++++++++ debian/patches/series | 1 + 3 files changed, 25 insertions(+) diff --git a/debian/changelog b/debian/changelog index b74f45d..a9cb316 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +python-schema-salad (2.6.20171201034858-2) UNRELEASED; urgency=medium + + * Team upload + * Allow python-avro >= 1.8.1 (instead of == 1.8.1) + + -- Andreas Tille <[email protected]> Fri, 22 Dec 2017 09:00:40 +0100 + python-schema-salad (2.6.20171201034858-1) unstable; urgency=medium * Team upload. diff --git a/debian/patches/allow_avro_gt_1.8.1.patch b/debian/patches/allow_avro_gt_1.8.1.patch new file mode 100644 index 0000000..d87c5c9 --- /dev/null +++ b/debian/patches/allow_avro_gt_1.8.1.patch @@ -0,0 +1,17 @@ +Description: Allow python-avro >= 1.8.1 (instead of == 1.8.1) + Otherwise cwltool will fail to build in sid due to asking for exact + version match +Author: Andreas Tille <[email protected]> +Last-Update: Fri, 22 Dec 2017 09:00:40 +0100 + +--- a/setup.py ++++ b/setup.py +@@ -38,7 +38,7 @@ install_requires = [ + 'six >= 1.8.0'] + + extras_require={ +- ':python_version<"3"': ['avro == 1.8.1'], ++ ':python_version<"3"': ['avro >= 1.8.1'], + ':python_version>="3"': ['future', 'avro-cwl == 1.8.4'] # fork of avro for working with python3 + } + diff --git a/debian/patches/series b/debian/patches/series index 2ce867c..21f43b9 100644 --- a/debian/patches/series +++ b/debian/patches/series @@ -1 +1,2 @@ avoid_privacy_breach.patch +allow_avro_gt_1.8.1.patch -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/debian-med/python-schema-salad.git _______________________________________________ debian-med-commit mailing list [email protected] http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/debian-med-commit
