From 781134759406a3c6443a6f471a7fbcdfa16f8014ff485afebc1cff7bb08a1c4d Mon Sep 17 00:00:00 2001 From: Dirk Mueller Date: Wed, 11 Mar 2020 09:38:54 +0000 Subject: [PATCH] - update to 0.9.5: * * Fix syntax warnings on python 3.8 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-jmespath?expand=0&rev=36 --- jmespath-0.9.4.tar.gz | 3 --- jmespath-0.9.5.tar.gz | 3 +++ python-jmespath.changes | 6 ++++++ python-jmespath.spec | 4 ++-- test_hypothesis.py | 4 +++- 5 files changed, 14 insertions(+), 6 deletions(-) delete mode 100644 jmespath-0.9.4.tar.gz create mode 100644 jmespath-0.9.5.tar.gz diff --git a/jmespath-0.9.4.tar.gz b/jmespath-0.9.4.tar.gz deleted file mode 100644 index 4eda46a..0000000 --- a/jmespath-0.9.4.tar.gz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:bde2aef6f44302dfb30320115b17d030798de8c4110e28d5cf6cf91a7a31074c -size 22940 diff --git a/jmespath-0.9.5.tar.gz b/jmespath-0.9.5.tar.gz new file mode 100644 index 0000000..ed6a3af --- /dev/null +++ b/jmespath-0.9.5.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cca55c8d153173e21baa59983015ad0daf603f9cb799904ff057bfb8ff8dc2d9 +size 27084 diff --git a/python-jmespath.changes b/python-jmespath.changes index 32d2957..33581ce 100644 --- a/python-jmespath.changes +++ b/python-jmespath.changes @@ -1,3 +1,9 @@ +------------------------------------------------------------------- +Wed Mar 11 09:37:57 UTC 2020 - Dirk Mueller + +- update to 0.9.5: + * * Fix syntax warnings on python 3.8 + ------------------------------------------------------------------- Tue Mar 26 14:43:27 UTC 2019 - Tomáš Chvátal diff --git a/python-jmespath.spec b/python-jmespath.spec index 05a5ed6..0091af8 100644 --- a/python-jmespath.spec +++ b/python-jmespath.spec @@ -1,7 +1,7 @@ # # spec file for package python-jmespath # -# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany. +# Copyright (c) 2020 SUSE LLC # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -18,7 +18,7 @@ %{?!python_module:%define python_module() python-%{**} python3-%{**}} Name: python-jmespath -Version: 0.9.4 +Version: 0.9.5 Release: 0 Summary: Python module for declarative JSON document element extraction License: MIT diff --git a/test_hypothesis.py b/test_hypothesis.py index 5533eef..5b743a2 100644 --- a/test_hypothesis.py +++ b/test_hypothesis.py @@ -32,7 +32,9 @@ RANDOM_JSON = st.recursive( MAX_EXAMPLES = int(os.environ.get('JP_MAX_EXAMPLES', 1000)) BASE_SETTINGS = { 'max_examples': MAX_EXAMPLES, - 'suppress_health_check': [HealthCheck.too_slow], + 'suppress_health_check': [HealthCheck.too_slow, + HealthCheck.filter_too_much, + HealthCheck.data_too_large], }