- 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
This commit is contained in:
Dirk Mueller 2020-03-11 09:38:54 +00:00 committed by Git OBS Bridge
parent b46bbda4ba
commit 7811347594
5 changed files with 14 additions and 6 deletions

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:bde2aef6f44302dfb30320115b17d030798de8c4110e28d5cf6cf91a7a31074c
size 22940

3
jmespath-0.9.5.tar.gz Normal file
View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:cca55c8d153173e21baa59983015ad0daf603f9cb799904ff057bfb8ff8dc2d9
size 27084

View File

@ -1,3 +1,9 @@
-------------------------------------------------------------------
Wed Mar 11 09:37:57 UTC 2020 - Dirk Mueller <dmueller@suse.com>
- update to 0.9.5:
* * Fix syntax warnings on python 3.8
-------------------------------------------------------------------
Tue Mar 26 14:43:27 UTC 2019 - Tomáš Chvátal <tchvatal@suse.com>

View File

@ -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

View File

@ -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],
}