Sun Aug 27 13:33:24 2023 UTC ()
py-openapi-core: updated to 0.18.0

0.18.0

Upgrades

Compatibility with jsonschema 4.18, jsonschema-spec 0.2, openapi-schema-validator 0.6 and openapi-spec-validator 0.6
Update dependencies

Deprecations

spec_url parameter of Spec.from_dict is deprecated. Use base_uri instead.
ref_resolver_handlers parameter of Spec.from_dict is deprecated. Use handlers instead.

Backward incompatibilities

Drop python 3.7 support
Format validators ignore other types and pass (in accordance with the specification)
Remove deprecated features
Spec.create method
spec as a first parameter for validate_request and validate_response shortcuts
validator parameter for validate_request and validate_response shortcuts
return unmarshalling data result for validate_request and validate_response shortcuts
RequestValidator, ResponseValidator and openapi_ objects
custom_deserializersparameter
custom_formattersparameter


(adam)
diff -r1.5 -r1.6 pkgsrc/textproc/py-openapi-core/Makefile
diff -r1.3 -r1.4 pkgsrc/textproc/py-openapi-core/PLIST
diff -r1.3 -r1.4 pkgsrc/textproc/py-openapi-core/distinfo

cvs diff -r1.5 -r1.6 pkgsrc/textproc/py-openapi-core/Makefile (expand / switch to unified diff)

--- pkgsrc/textproc/py-openapi-core/Makefile 2023/05/15 20:33:32 1.5
+++ pkgsrc/textproc/py-openapi-core/Makefile 2023/08/27 13:33:23 1.6
@@ -1,37 +1,37 @@ @@ -1,37 +1,37 @@
1# $NetBSD: Makefile,v 1.5 2023/05/15 20:33:32 adam Exp $ 1# $NetBSD: Makefile,v 1.6 2023/08/27 13:33:23 adam Exp $
2 2
3DISTNAME= openapi_core-0.17.1 3DISTNAME= openapi_core-0.18.0
4PKGNAME= ${PYPKGPREFIX}-${DISTNAME:S/_/-/} 4PKGNAME= ${PYPKGPREFIX}-${DISTNAME:S/_/-/}
5CATEGORIES= textproc www python 5CATEGORIES= textproc www python
6MASTER_SITES= ${MASTER_SITE_PYPI:=o/openapi-core/} 6MASTER_SITES= ${MASTER_SITE_PYPI:=o/openapi-core/}
7 7
8MAINTAINER= pkgsrc-users@NetBSD.org 8MAINTAINER= pkgsrc-users@NetBSD.org
9HOMEPAGE= https://github.com/python-openapi/openapi-core 9HOMEPAGE= https://github.com/python-openapi/openapi-core
10COMMENT= Client-side and server-side support for the OpenAPI Specification v3 10COMMENT= Client-side and server-side support for the OpenAPI Specification v3
11LICENSE= modified-bsd 11LICENSE= modified-bsd
12 12
13TOOL_DEPENDS+= ${PYPKGPREFIX}-poetry-core>=1.0.0:../../devel/py-poetry-core 13TOOL_DEPENDS+= ${PYPKGPREFIX}-poetry-core>=1.0.0:../../devel/py-poetry-core
 14DEPENDS+= ${PYPKGPREFIX}-asgiref>=3.6.0:../../www/py-asgiref
14DEPENDS+= ${PYPKGPREFIX}-isodate-[0-9]*:../../time/py-isodate 15DEPENDS+= ${PYPKGPREFIX}-isodate-[0-9]*:../../time/py-isodate
15DEPENDS+= ${PYPKGPREFIX}-jsonschema-spec>=0.1.1:../../textproc/py-jsonschema-spec 16DEPENDS+= ${PYPKGPREFIX}-jsonschema>=4.18.0:../../textproc/py-jsonschema
16DEPENDS+= ${PYPKGPREFIX}-lazy-object-proxy-[0-9]*:../../devel/py-lazy-object-proxy 17DEPENDS+= ${PYPKGPREFIX}-jsonschema-spec>=0.2.3:../../textproc/py-jsonschema-spec
17DEPENDS+= ${PYPKGPREFIX}-more-itertools-[0-9]*:../../devel/py-more-itertools 18DEPENDS+= ${PYPKGPREFIX}-more-itertools-[0-9]*:../../devel/py-more-itertools
18DEPENDS+= ${PYPKGPREFIX}-openapi-schema-validator>=0.4.2:../../textproc/py-openapi-schema-validator 19DEPENDS+= ${PYPKGPREFIX}-openapi-schema-validator>=0.6.0:../../textproc/py-openapi-schema-validator
19DEPENDS+= ${PYPKGPREFIX}-openapi-spec-validator>=0.5.0:../../textproc/py-openapi-spec-validator 20DEPENDS+= ${PYPKGPREFIX}-openapi-spec-validator>=0.6.0:../../textproc/py-openapi-spec-validator
20DEPENDS+= ${PYPKGPREFIX}-pathable>=0.4.0:../../devel/py-pathable 
21DEPENDS+= ${PYPKGPREFIX}-parse-[0-9]*:../../textproc/py-parse 21DEPENDS+= ${PYPKGPREFIX}-parse-[0-9]*:../../textproc/py-parse
22DEPENDS+= ${PYPKGPREFIX}-typing-extensions>=4.3.0:../../devel/py-typing-extensions 
23DEPENDS+= ${PYPKGPREFIX}-werkzeug-[0-9]*:../../www/py-werkzeug 22DEPENDS+= ${PYPKGPREFIX}-werkzeug-[0-9]*:../../www/py-werkzeug
24TEST_DEPENDS+= ${PYPKGPREFIX}-WebOb-[0-9]*:../../www/py-WebOb 23TEST_DEPENDS+= ${PYPKGPREFIX}-WebOb-[0-9]*:../../www/py-WebOb
 24TEST_DEPENDS+= ${PYPKGPREFIX}-aiohttp-[0-9]*:../../www/py-aiohttp
25TEST_DEPENDS+= ${PYPKGPREFIX}-django-[0-9]*:../../www/py-django3 25TEST_DEPENDS+= ${PYPKGPREFIX}-django-[0-9]*:../../www/py-django3
26TEST_DEPENDS+= ${PYPKGPREFIX}-falcon-[0-9]*:../../devel/py-falcon 26TEST_DEPENDS+= ${PYPKGPREFIX}-falcon-[0-9]*:../../devel/py-falcon
27TEST_DEPENDS+= ${PYPKGPREFIX}-flask-[0-9]*:../../www/py-flask 27TEST_DEPENDS+= ${PYPKGPREFIX}-flask-[0-9]*:../../www/py-flask
28TEST_DEPENDS+= ${PYPKGPREFIX}-responses-[0-9]*:../../net/py-responses 28TEST_DEPENDS+= ${PYPKGPREFIX}-responses-[0-9]*:../../net/py-responses
29# TODO: starlette>=0.26.1 29# TODO: starlette>=0.26.1
30TEST_DEPENDS+= ${PYPKGPREFIX}-test-[0-9]*:../../devel/py-test 30TEST_DEPENDS+= ${PYPKGPREFIX}-test-[0-9]*:../../devel/py-test
31TEST_DEPENDS+= ${PYPKGPREFIX}-test-cov-[0-9]*:../../devel/py-test-cov 31TEST_DEPENDS+= ${PYPKGPREFIX}-test-cov-[0-9]*:../../devel/py-test-cov
32TEST_DEPENDS+= ${PYPKGPREFIX}-test-flake8-[0-9]*:../../devel/py-test-flake8 32TEST_DEPENDS+= ${PYPKGPREFIX}-test-flake8-[0-9]*:../../devel/py-test-flake8
33 33
34USE_LANGUAGES= # none 34USE_LANGUAGES= # none
35 35
36PYTHON_VERSIONS_INCOMPATIBLE= 27 36PYTHON_VERSIONS_INCOMPATIBLE= 27
37 37

cvs diff -r1.3 -r1.4 pkgsrc/textproc/py-openapi-core/PLIST (expand / switch to unified diff)

--- pkgsrc/textproc/py-openapi-core/PLIST 2023/05/15 20:33:32 1.3
+++ pkgsrc/textproc/py-openapi-core/PLIST 2023/08/27 13:33:23 1.4
@@ -1,37 +1,43 @@ @@ -1,37 +1,43 @@
1@comment $NetBSD: PLIST,v 1.3 2023/05/15 20:33:32 adam Exp $ 1@comment $NetBSD: PLIST,v 1.4 2023/08/27 13:33:23 adam Exp $
2${PYSITELIB}/${WHEEL_INFODIR}/INSTALLER 2${PYSITELIB}/${WHEEL_INFODIR}/INSTALLER
3${PYSITELIB}/${WHEEL_INFODIR}/LICENSE 3${PYSITELIB}/${WHEEL_INFODIR}/LICENSE
4${PYSITELIB}/${WHEEL_INFODIR}/METADATA 4${PYSITELIB}/${WHEEL_INFODIR}/METADATA
5${PYSITELIB}/${WHEEL_INFODIR}/RECORD 5${PYSITELIB}/${WHEEL_INFODIR}/RECORD
6${PYSITELIB}/${WHEEL_INFODIR}/REQUESTED 6${PYSITELIB}/${WHEEL_INFODIR}/REQUESTED
7${PYSITELIB}/${WHEEL_INFODIR}/WHEEL 7${PYSITELIB}/${WHEEL_INFODIR}/WHEEL
8${PYSITELIB}/${WHEEL_INFODIR}/direct_url.json 8${PYSITELIB}/${WHEEL_INFODIR}/direct_url.json
9${PYSITELIB}/openapi_core/__init__.py 9${PYSITELIB}/openapi_core/__init__.py
10${PYSITELIB}/openapi_core/__init__.pyc 10${PYSITELIB}/openapi_core/__init__.pyc
11${PYSITELIB}/openapi_core/casting/__init__.py 11${PYSITELIB}/openapi_core/casting/__init__.py
12${PYSITELIB}/openapi_core/casting/__init__.pyc 12${PYSITELIB}/openapi_core/casting/__init__.pyc
13${PYSITELIB}/openapi_core/casting/schemas/__init__.py 13${PYSITELIB}/openapi_core/casting/schemas/__init__.py
14${PYSITELIB}/openapi_core/casting/schemas/__init__.pyc 14${PYSITELIB}/openapi_core/casting/schemas/__init__.pyc
15${PYSITELIB}/openapi_core/casting/schemas/casters.py 15${PYSITELIB}/openapi_core/casting/schemas/casters.py
16${PYSITELIB}/openapi_core/casting/schemas/casters.pyc 16${PYSITELIB}/openapi_core/casting/schemas/casters.pyc
17${PYSITELIB}/openapi_core/casting/schemas/datatypes.py 17${PYSITELIB}/openapi_core/casting/schemas/datatypes.py
18${PYSITELIB}/openapi_core/casting/schemas/datatypes.pyc 18${PYSITELIB}/openapi_core/casting/schemas/datatypes.pyc
19${PYSITELIB}/openapi_core/casting/schemas/exceptions.py 19${PYSITELIB}/openapi_core/casting/schemas/exceptions.py
20${PYSITELIB}/openapi_core/casting/schemas/exceptions.pyc 20${PYSITELIB}/openapi_core/casting/schemas/exceptions.pyc
21${PYSITELIB}/openapi_core/casting/schemas/factories.py 21${PYSITELIB}/openapi_core/casting/schemas/factories.py
22${PYSITELIB}/openapi_core/casting/schemas/factories.pyc 22${PYSITELIB}/openapi_core/casting/schemas/factories.pyc
23${PYSITELIB}/openapi_core/contrib/__init__.py 23${PYSITELIB}/openapi_core/contrib/__init__.py
24${PYSITELIB}/openapi_core/contrib/__init__.pyc 24${PYSITELIB}/openapi_core/contrib/__init__.pyc
 25${PYSITELIB}/openapi_core/contrib/aiohttp/__init__.py
 26${PYSITELIB}/openapi_core/contrib/aiohttp/__init__.pyc
 27${PYSITELIB}/openapi_core/contrib/aiohttp/requests.py
 28${PYSITELIB}/openapi_core/contrib/aiohttp/requests.pyc
 29${PYSITELIB}/openapi_core/contrib/aiohttp/responses.py
 30${PYSITELIB}/openapi_core/contrib/aiohttp/responses.pyc
25${PYSITELIB}/openapi_core/contrib/django/__init__.py 31${PYSITELIB}/openapi_core/contrib/django/__init__.py
26${PYSITELIB}/openapi_core/contrib/django/__init__.pyc 32${PYSITELIB}/openapi_core/contrib/django/__init__.pyc
27${PYSITELIB}/openapi_core/contrib/django/handlers.py 33${PYSITELIB}/openapi_core/contrib/django/handlers.py
28${PYSITELIB}/openapi_core/contrib/django/handlers.pyc 34${PYSITELIB}/openapi_core/contrib/django/handlers.pyc
29${PYSITELIB}/openapi_core/contrib/django/middlewares.py 35${PYSITELIB}/openapi_core/contrib/django/middlewares.py
30${PYSITELIB}/openapi_core/contrib/django/middlewares.pyc 36${PYSITELIB}/openapi_core/contrib/django/middlewares.pyc
31${PYSITELIB}/openapi_core/contrib/django/requests.py 37${PYSITELIB}/openapi_core/contrib/django/requests.py
32${PYSITELIB}/openapi_core/contrib/django/requests.pyc 38${PYSITELIB}/openapi_core/contrib/django/requests.pyc
33${PYSITELIB}/openapi_core/contrib/django/responses.py 39${PYSITELIB}/openapi_core/contrib/django/responses.py
34${PYSITELIB}/openapi_core/contrib/django/responses.pyc 40${PYSITELIB}/openapi_core/contrib/django/responses.pyc
35${PYSITELIB}/openapi_core/contrib/falcon/__init__.py 41${PYSITELIB}/openapi_core/contrib/falcon/__init__.py
36${PYSITELIB}/openapi_core/contrib/falcon/__init__.pyc 42${PYSITELIB}/openapi_core/contrib/falcon/__init__.pyc
37${PYSITELIB}/openapi_core/contrib/falcon/handlers.py 43${PYSITELIB}/openapi_core/contrib/falcon/handlers.py
@@ -139,28 +145,26 @@ ${PYSITELIB}/openapi_core/security/__ini @@ -139,28 +145,26 @@ ${PYSITELIB}/openapi_core/security/__ini
139${PYSITELIB}/openapi_core/security/__init__.pyc 145${PYSITELIB}/openapi_core/security/__init__.pyc
140${PYSITELIB}/openapi_core/security/exceptions.py 146${PYSITELIB}/openapi_core/security/exceptions.py
141${PYSITELIB}/openapi_core/security/exceptions.pyc 147${PYSITELIB}/openapi_core/security/exceptions.pyc
142${PYSITELIB}/openapi_core/security/factories.py 148${PYSITELIB}/openapi_core/security/factories.py
143${PYSITELIB}/openapi_core/security/factories.pyc 149${PYSITELIB}/openapi_core/security/factories.pyc
144${PYSITELIB}/openapi_core/security/providers.py 150${PYSITELIB}/openapi_core/security/providers.py
145${PYSITELIB}/openapi_core/security/providers.pyc 151${PYSITELIB}/openapi_core/security/providers.pyc
146${PYSITELIB}/openapi_core/shortcuts.py 152${PYSITELIB}/openapi_core/shortcuts.py
147${PYSITELIB}/openapi_core/shortcuts.pyc 153${PYSITELIB}/openapi_core/shortcuts.pyc
148${PYSITELIB}/openapi_core/spec/__init__.py 154${PYSITELIB}/openapi_core/spec/__init__.py
149${PYSITELIB}/openapi_core/spec/__init__.pyc 155${PYSITELIB}/openapi_core/spec/__init__.pyc
150${PYSITELIB}/openapi_core/spec/paths.py 156${PYSITELIB}/openapi_core/spec/paths.py
151${PYSITELIB}/openapi_core/spec/paths.pyc 157${PYSITELIB}/openapi_core/spec/paths.pyc
152${PYSITELIB}/openapi_core/spec/shortcuts.py 
153${PYSITELIB}/openapi_core/spec/shortcuts.pyc 
154${PYSITELIB}/openapi_core/templating/__init__.py 158${PYSITELIB}/openapi_core/templating/__init__.py
155${PYSITELIB}/openapi_core/templating/__init__.pyc 159${PYSITELIB}/openapi_core/templating/__init__.pyc
156${PYSITELIB}/openapi_core/templating/datatypes.py 160${PYSITELIB}/openapi_core/templating/datatypes.py
157${PYSITELIB}/openapi_core/templating/datatypes.pyc 161${PYSITELIB}/openapi_core/templating/datatypes.pyc
158${PYSITELIB}/openapi_core/templating/media_types/__init__.py 162${PYSITELIB}/openapi_core/templating/media_types/__init__.py
159${PYSITELIB}/openapi_core/templating/media_types/__init__.pyc 163${PYSITELIB}/openapi_core/templating/media_types/__init__.pyc
160${PYSITELIB}/openapi_core/templating/media_types/datatypes.py 164${PYSITELIB}/openapi_core/templating/media_types/datatypes.py
161${PYSITELIB}/openapi_core/templating/media_types/datatypes.pyc 165${PYSITELIB}/openapi_core/templating/media_types/datatypes.pyc
162${PYSITELIB}/openapi_core/templating/media_types/exceptions.py 166${PYSITELIB}/openapi_core/templating/media_types/exceptions.py
163${PYSITELIB}/openapi_core/templating/media_types/exceptions.pyc 167${PYSITELIB}/openapi_core/templating/media_types/exceptions.pyc
164${PYSITELIB}/openapi_core/templating/media_types/finders.py 168${PYSITELIB}/openapi_core/templating/media_types/finders.py
165${PYSITELIB}/openapi_core/templating/media_types/finders.pyc 169${PYSITELIB}/openapi_core/templating/media_types/finders.pyc
166${PYSITELIB}/openapi_core/templating/paths/__init__.py 170${PYSITELIB}/openapi_core/templating/paths/__init__.py
@@ -195,40 +199,36 @@ ${PYSITELIB}/openapi_core/testing/respon @@ -195,40 +199,36 @@ ${PYSITELIB}/openapi_core/testing/respon
195${PYSITELIB}/openapi_core/testing/responses.pyc 199${PYSITELIB}/openapi_core/testing/responses.pyc
196${PYSITELIB}/openapi_core/unmarshalling/__init__.py 200${PYSITELIB}/openapi_core/unmarshalling/__init__.py
197${PYSITELIB}/openapi_core/unmarshalling/__init__.pyc 201${PYSITELIB}/openapi_core/unmarshalling/__init__.pyc
198${PYSITELIB}/openapi_core/unmarshalling/datatypes.py 202${PYSITELIB}/openapi_core/unmarshalling/datatypes.py
199${PYSITELIB}/openapi_core/unmarshalling/datatypes.pyc 203${PYSITELIB}/openapi_core/unmarshalling/datatypes.pyc
200${PYSITELIB}/openapi_core/unmarshalling/processors.py 204${PYSITELIB}/openapi_core/unmarshalling/processors.py
201${PYSITELIB}/openapi_core/unmarshalling/processors.pyc 205${PYSITELIB}/openapi_core/unmarshalling/processors.pyc
202${PYSITELIB}/openapi_core/unmarshalling/request/__init__.py 206${PYSITELIB}/openapi_core/unmarshalling/request/__init__.py
203${PYSITELIB}/openapi_core/unmarshalling/request/__init__.pyc 207${PYSITELIB}/openapi_core/unmarshalling/request/__init__.pyc
204${PYSITELIB}/openapi_core/unmarshalling/request/datatypes.py 208${PYSITELIB}/openapi_core/unmarshalling/request/datatypes.py
205${PYSITELIB}/openapi_core/unmarshalling/request/datatypes.pyc 209${PYSITELIB}/openapi_core/unmarshalling/request/datatypes.pyc
206${PYSITELIB}/openapi_core/unmarshalling/request/protocols.py 210${PYSITELIB}/openapi_core/unmarshalling/request/protocols.py
207${PYSITELIB}/openapi_core/unmarshalling/request/protocols.pyc 211${PYSITELIB}/openapi_core/unmarshalling/request/protocols.pyc
208${PYSITELIB}/openapi_core/unmarshalling/request/proxies.py 
209${PYSITELIB}/openapi_core/unmarshalling/request/proxies.pyc 
210${PYSITELIB}/openapi_core/unmarshalling/request/types.py 212${PYSITELIB}/openapi_core/unmarshalling/request/types.py
211${PYSITELIB}/openapi_core/unmarshalling/request/types.pyc 213${PYSITELIB}/openapi_core/unmarshalling/request/types.pyc
212${PYSITELIB}/openapi_core/unmarshalling/request/unmarshallers.py 214${PYSITELIB}/openapi_core/unmarshalling/request/unmarshallers.py
213${PYSITELIB}/openapi_core/unmarshalling/request/unmarshallers.pyc 215${PYSITELIB}/openapi_core/unmarshalling/request/unmarshallers.pyc
214${PYSITELIB}/openapi_core/unmarshalling/response/__init__.py 216${PYSITELIB}/openapi_core/unmarshalling/response/__init__.py
215${PYSITELIB}/openapi_core/unmarshalling/response/__init__.pyc 217${PYSITELIB}/openapi_core/unmarshalling/response/__init__.pyc
216${PYSITELIB}/openapi_core/unmarshalling/response/datatypes.py 218${PYSITELIB}/openapi_core/unmarshalling/response/datatypes.py
217${PYSITELIB}/openapi_core/unmarshalling/response/datatypes.pyc 219${PYSITELIB}/openapi_core/unmarshalling/response/datatypes.pyc
218${PYSITELIB}/openapi_core/unmarshalling/response/protocols.py 220${PYSITELIB}/openapi_core/unmarshalling/response/protocols.py
219${PYSITELIB}/openapi_core/unmarshalling/response/protocols.pyc 221${PYSITELIB}/openapi_core/unmarshalling/response/protocols.pyc
220${PYSITELIB}/openapi_core/unmarshalling/response/proxies.py 
221${PYSITELIB}/openapi_core/unmarshalling/response/proxies.pyc 
222${PYSITELIB}/openapi_core/unmarshalling/response/types.py 222${PYSITELIB}/openapi_core/unmarshalling/response/types.py
223${PYSITELIB}/openapi_core/unmarshalling/response/types.pyc 223${PYSITELIB}/openapi_core/unmarshalling/response/types.pyc
224${PYSITELIB}/openapi_core/unmarshalling/response/unmarshallers.py 224${PYSITELIB}/openapi_core/unmarshalling/response/unmarshallers.py
225${PYSITELIB}/openapi_core/unmarshalling/response/unmarshallers.pyc 225${PYSITELIB}/openapi_core/unmarshalling/response/unmarshallers.pyc
226${PYSITELIB}/openapi_core/unmarshalling/schemas/__init__.py 226${PYSITELIB}/openapi_core/unmarshalling/schemas/__init__.py
227${PYSITELIB}/openapi_core/unmarshalling/schemas/__init__.pyc 227${PYSITELIB}/openapi_core/unmarshalling/schemas/__init__.pyc
228${PYSITELIB}/openapi_core/unmarshalling/schemas/datatypes.py 228${PYSITELIB}/openapi_core/unmarshalling/schemas/datatypes.py
229${PYSITELIB}/openapi_core/unmarshalling/schemas/datatypes.pyc 229${PYSITELIB}/openapi_core/unmarshalling/schemas/datatypes.pyc
230${PYSITELIB}/openapi_core/unmarshalling/schemas/exceptions.py 230${PYSITELIB}/openapi_core/unmarshalling/schemas/exceptions.py
231${PYSITELIB}/openapi_core/unmarshalling/schemas/exceptions.pyc 231${PYSITELIB}/openapi_core/unmarshalling/schemas/exceptions.pyc
232${PYSITELIB}/openapi_core/unmarshalling/schemas/factories.py 232${PYSITELIB}/openapi_core/unmarshalling/schemas/factories.py
233${PYSITELIB}/openapi_core/unmarshalling/schemas/factories.pyc 233${PYSITELIB}/openapi_core/unmarshalling/schemas/factories.pyc
234${PYSITELIB}/openapi_core/unmarshalling/schemas/unmarshallers.py 234${PYSITELIB}/openapi_core/unmarshalling/schemas/unmarshallers.py
@@ -267,19 +267,17 @@ ${PYSITELIB}/openapi_core/validation/res @@ -267,19 +267,17 @@ ${PYSITELIB}/openapi_core/validation/res
267${PYSITELIB}/openapi_core/validation/response/protocols.pyc 267${PYSITELIB}/openapi_core/validation/response/protocols.pyc
268${PYSITELIB}/openapi_core/validation/response/types.py 268${PYSITELIB}/openapi_core/validation/response/types.py
269${PYSITELIB}/openapi_core/validation/response/types.pyc 269${PYSITELIB}/openapi_core/validation/response/types.pyc
270${PYSITELIB}/openapi_core/validation/response/validators.py 270${PYSITELIB}/openapi_core/validation/response/validators.py
271${PYSITELIB}/openapi_core/validation/response/validators.pyc 271${PYSITELIB}/openapi_core/validation/response/validators.pyc
272${PYSITELIB}/openapi_core/validation/schemas/__init__.py 272${PYSITELIB}/openapi_core/validation/schemas/__init__.py
273${PYSITELIB}/openapi_core/validation/schemas/__init__.pyc 273${PYSITELIB}/openapi_core/validation/schemas/__init__.pyc
274${PYSITELIB}/openapi_core/validation/schemas/datatypes.py 274${PYSITELIB}/openapi_core/validation/schemas/datatypes.py
275${PYSITELIB}/openapi_core/validation/schemas/datatypes.pyc 275${PYSITELIB}/openapi_core/validation/schemas/datatypes.pyc
276${PYSITELIB}/openapi_core/validation/schemas/exceptions.py 276${PYSITELIB}/openapi_core/validation/schemas/exceptions.py
277${PYSITELIB}/openapi_core/validation/schemas/exceptions.pyc 277${PYSITELIB}/openapi_core/validation/schemas/exceptions.pyc
278${PYSITELIB}/openapi_core/validation/schemas/factories.py 278${PYSITELIB}/openapi_core/validation/schemas/factories.py
279${PYSITELIB}/openapi_core/validation/schemas/factories.pyc 279${PYSITELIB}/openapi_core/validation/schemas/factories.pyc
280${PYSITELIB}/openapi_core/validation/schemas/formatters.py 
281${PYSITELIB}/openapi_core/validation/schemas/formatters.pyc 
282${PYSITELIB}/openapi_core/validation/schemas/validators.py 280${PYSITELIB}/openapi_core/validation/schemas/validators.py
283${PYSITELIB}/openapi_core/validation/schemas/validators.pyc 281${PYSITELIB}/openapi_core/validation/schemas/validators.pyc
284${PYSITELIB}/openapi_core/validation/validators.py 282${PYSITELIB}/openapi_core/validation/validators.py
285${PYSITELIB}/openapi_core/validation/validators.pyc 283${PYSITELIB}/openapi_core/validation/validators.pyc

cvs diff -r1.3 -r1.4 pkgsrc/textproc/py-openapi-core/distinfo (expand / switch to unified diff)

--- pkgsrc/textproc/py-openapi-core/distinfo 2023/05/15 20:33:32 1.3
+++ pkgsrc/textproc/py-openapi-core/distinfo 2023/08/27 13:33:24 1.4
@@ -1,5 +1,5 @@ @@ -1,5 +1,5 @@
1$NetBSD: distinfo,v 1.3 2023/05/15 20:33:32 adam Exp $ 1$NetBSD: distinfo,v 1.4 2023/08/27 13:33:24 adam Exp $
2 2
3BLAKE2s (openapi_core-0.17.1.tar.gz) = 6a7a1339b1e17099678a984fd2cda874ddc6212b66a47a4ad79a498de8bc045e 3BLAKE2s (openapi_core-0.18.0.tar.gz) = a9c3b2bf6a52f4c9b8439cb48a94772ad57c3da28e150c0ee127ca5841a55ef2
4SHA512 (openapi_core-0.17.1.tar.gz) = 0e2c673dbbfcce87ae7fbca6ec6c283d94c36376b1e17191d0bfa6c7001c62913381169b4614b5cd6131eaa67b729365036be3f1eb7641f634c0f3228de54897 4SHA512 (openapi_core-0.18.0.tar.gz) = d9e516e00a53937f79c7419823a1533a507731e20da36e1186a1800f713154135524db968483ce850bd9a90a4c322ca1c957d6a7f99e9d8eefdc244ed9ce8bc0
5Size (openapi_core-0.17.1.tar.gz) = 85686 bytes 5Size (openapi_core-0.18.0.tar.gz) = 83474 bytes