17
0

- Update to 0.6.0:

* Compatibility with jsonschema 4.18 #72
  * Python 3.7 support dropped #84
  * OAS30Validator no longer accept read and write properties. Use
    OASReadValidator and OAS30WriteValidator instead. #85
  * Formats raise error for other types fix #67
  * Format validators ignore other types and pass (in accordance with the
    specification)

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-openapi-schema-validator?expand=0&rev=15
This commit is contained in:
2023-07-25 06:13:04 +00:00
committed by Git OBS Bridge
parent 950874ae30
commit 3574cd1c1c
4 changed files with 22 additions and 9 deletions

View File

@@ -18,24 +18,25 @@
%{?sle15_python_module_pythons}
Name: python-openapi-schema-validator
Version: 0.4.4
Version: 0.6.0
Release: 0
Summary: OpenAPI schema validator for Python
License: BSD-3-Clause
Group: Development/Languages/Python
URL: https://github.com/p1c2u/openapi-schema-validator
Source: https://github.com/p1c2u/openapi-schema-validator/archive/%{version}.tar.gz#/openapi-schema-validator-%{version}-gh.tar.gz
BuildRequires: %{python_module base >= 3.7}
BuildRequires: %{python_module base >= 3.8}
BuildRequires: %{python_module pip}
BuildRequires: %{python_module poetry-core}
BuildRequires: fdupes
BuildRequires: python-rpm-macros
Provides: python-openapi_schema_validator = %{version}-%{release}
Requires: python-jsonschema >= 4.18
Requires: python-jsonschema-specifications >= 2023.5
Requires: python-rfc3339-validator
Requires: (python-jsonschema >= 4 with python-jsonschema < 4.18)
BuildArch: noarch
# SECTION test requirements
BuildRequires: %{python_module jsonschema >= 4 with %python-jsonschema < 4.18}
BuildRequires: %{python_module jsonschema >= 4.18}
BuildRequires: %{python_module jsonschema-specifications >= 2023.5}
BuildRequires: %{python_module pytest}
BuildRequires: %{python_module rfc3339-validator}
# /SECTION
@@ -48,7 +49,7 @@ is an extended subset of the JSON Schema Specification
Wright Draft 00.
%prep
%setup -q -n openapi-schema-validator-%{version}
%autosetup -p1 -n openapi-schema-validator-%{version}
sed -i 's:tool.pytest.ini_options:hide:' pyproject.toml
%build