From fc0f5b08056256982e780e1e4934ed17bbd35000 Mon Sep 17 00:00:00 2001 From: Denis Silakov Date: Tue, 1 Oct 2019 11:48:48 +0300 Subject: [PATCH] Updated to 3.0.2 --- .abf.yml | 3 ++- python-jsonschema.spec | 8 ++++++-- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/.abf.yml b/.abf.yml index c38a4e6..8be502d 100644 --- a/.abf.yml +++ b/.abf.yml @@ -1,5 +1,6 @@ removed_sources: jsonschema-2.3.0.tar.gz: 928c9b43f35298346b27b910660944dde931048e jsonschema-2.4.0.tar.gz: 35d4d90ce942a4b030eda75e9a2b32f97e121a98 -sources: jsonschema-2.6.0.tar.gz: 97e49df4601f7066d9954c0ec4d8d697887b32f0 +sources: + jsonschema-3.0.2.tar.gz: 47c75ca8426ca71ba59541b12985d1f7fa644364 diff --git a/python-jsonschema.spec b/python-jsonschema.spec index 9a40cfb..97f65fa 100644 --- a/python-jsonschema.spec +++ b/python-jsonschema.spec @@ -1,8 +1,8 @@ %define oname jsonschema Name: python-%{oname} -Version: 2.6.0 -Release: 2 +Version: 3.0.2 +Release: 1 Summary: An implementation of JSON Schema validation for Python Source0: http://pypi.python.org/packages/source/j/jsonschema/jsonschema-%{version}.tar.gz License: MIT @@ -12,6 +12,7 @@ BuildArch: noarch BuildRequires: pkgconfig(python) BuildRequires: pythonegg(nose) BuildRequires: pythonegg(mock) +BuildRequires: pythonegg(pyrsistent) %description @@ -21,6 +22,9 @@ http://tools.ietf.org/html/draft-zyp-json-schema-03 %prep %setup -q -n %{oname}-%{version} +# drop bundled egg-info +rm -rf jsonschema.egg-info/ + %build python setup.py build