invenio-vocabularies 7.0.0.dev1__py2.py3-none-any.whl → 7.0.0.dev2__py2.py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of invenio-vocabularies might be problematic. Click here for more details.
- invenio_vocabularies/__init__.py +1 -1
- invenio_vocabularies/contrib/names/schema.py +13 -1
- {invenio_vocabularies-7.0.0.dev1.dist-info → invenio_vocabularies-7.0.0.dev2.dist-info}/METADATA +10 -4
- {invenio_vocabularies-7.0.0.dev1.dist-info → invenio_vocabularies-7.0.0.dev2.dist-info}/RECORD +9 -9
- {invenio_vocabularies-7.0.0.dev1.dist-info → invenio_vocabularies-7.0.0.dev2.dist-info}/WHEEL +1 -1
- {invenio_vocabularies-7.0.0.dev1.dist-info → invenio_vocabularies-7.0.0.dev2.dist-info}/AUTHORS.rst +0 -0
- {invenio_vocabularies-7.0.0.dev1.dist-info → invenio_vocabularies-7.0.0.dev2.dist-info}/LICENSE +0 -0
- {invenio_vocabularies-7.0.0.dev1.dist-info → invenio_vocabularies-7.0.0.dev2.dist-info}/entry_points.txt +0 -0
- {invenio_vocabularies-7.0.0.dev1.dist-info → invenio_vocabularies-7.0.0.dev2.dist-info}/top_level.txt +0 -0
invenio_vocabularies/__init__.py
CHANGED
|
@@ -11,7 +11,14 @@
|
|
|
11
11
|
from functools import partial
|
|
12
12
|
|
|
13
13
|
from invenio_i18n import lazy_gettext as _
|
|
14
|
-
from marshmallow import
|
|
14
|
+
from marshmallow import (
|
|
15
|
+
EXCLUDE,
|
|
16
|
+
ValidationError,
|
|
17
|
+
fields,
|
|
18
|
+
post_dump,
|
|
19
|
+
post_load,
|
|
20
|
+
validates_schema,
|
|
21
|
+
)
|
|
15
22
|
from marshmallow_utils.fields import IdentifierSet, SanitizedUnicode
|
|
16
23
|
from marshmallow_utils.schemas import IdentifierSchema
|
|
17
24
|
|
|
@@ -27,6 +34,11 @@ class AffiliationRelationSchema(BaseAffiliationRelationSchema):
|
|
|
27
34
|
|
|
28
35
|
acronym = SanitizedUnicode(dump_only=True)
|
|
29
36
|
|
|
37
|
+
class Meta:
|
|
38
|
+
"""Meta class."""
|
|
39
|
+
|
|
40
|
+
unknown = EXCLUDE
|
|
41
|
+
|
|
30
42
|
|
|
31
43
|
class NameSchema(BaseVocabularySchema, ModePIDFieldVocabularyMixin):
|
|
32
44
|
"""Service schema for names.
|
{invenio_vocabularies-7.0.0.dev1.dist-info → invenio_vocabularies-7.0.0.dev2.dist-info}/METADATA
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.2
|
|
2
2
|
Name: invenio-vocabularies
|
|
3
|
-
Version: 7.0.0.
|
|
3
|
+
Version: 7.0.0.dev2
|
|
4
4
|
Summary: Invenio module for managing vocabularies.
|
|
5
5
|
Home-page: https://github.com/inveniosoftware/invenio-vocabularies
|
|
6
6
|
Author: CERN
|
|
@@ -15,7 +15,7 @@ License-File: AUTHORS.rst
|
|
|
15
15
|
Requires-Dist: invenio-i18n<4.0.0,>=3.0.0
|
|
16
16
|
Requires-Dist: invenio-records-resources<8.0.0,>=7.0.0
|
|
17
17
|
Requires-Dist: invenio-administration<4.0.0,>=3.0.0
|
|
18
|
-
Requires-Dist: invenio-jobs<4.0.0,>=3.0.0.
|
|
18
|
+
Requires-Dist: invenio-jobs<4.0.0,>=3.0.0.dev2
|
|
19
19
|
Requires-Dist: lxml>=4.5.0
|
|
20
20
|
Requires-Dist: pycountry<23.0.0,>=22.3.5
|
|
21
21
|
Requires-Dist: PyYAML>=5.4.1
|
|
@@ -91,12 +91,18 @@ https://invenio-vocabularies.readthedocs.io/
|
|
|
91
91
|
Changes
|
|
92
92
|
=======
|
|
93
93
|
|
|
94
|
-
Version
|
|
94
|
+
Version v7.0.0.dev2 (released 2025-01-23)
|
|
95
|
+
|
|
96
|
+
Version v7.0.0.dev1 (released 2024-12-12)
|
|
95
97
|
|
|
96
98
|
- comp: make compatible to flask-sqlalchemy>=3.1
|
|
97
99
|
- setup: change to reusable workflows
|
|
98
100
|
- setup: bump major dependencies
|
|
99
101
|
|
|
102
|
+
Version v6.11.0 (released 2024-12-13)
|
|
103
|
+
|
|
104
|
+
- names: fix acronym in marshamllow schema
|
|
105
|
+
|
|
100
106
|
Version v6.10.1 (released 2024-12-12)
|
|
101
107
|
|
|
102
108
|
- names: drop unique id on the internal id
|
{invenio_vocabularies-7.0.0.dev1.dist-info → invenio_vocabularies-7.0.0.dev2.dist-info}/RECORD
RENAMED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
invenio_vocabularies/__init__.py,sha256=
|
|
1
|
+
invenio_vocabularies/__init__.py,sha256=zwa-YGYbt60XCHcsA3qhYm7CF-H3l7FM0MWfWiyQDPU,434
|
|
2
2
|
invenio_vocabularies/cli.py,sha256=CpXTTIn2GTpUqNfLEMlRAp3JWst8ZjHVxoGYdhuuv_4,5959
|
|
3
3
|
invenio_vocabularies/config.py,sha256=h9Iied753mmZwZZHe5COMqUYvV-zSQtx763EIkUVb1Q,6973
|
|
4
4
|
invenio_vocabularies/ext.py,sha256=GujJ4UARd4Fxf4z7zznRk9JAgHamZuYCOdrKU5czg00,5987
|
|
@@ -122,7 +122,7 @@ invenio_vocabularies/contrib/names/names.py,sha256=jej3gkBgOJpKwp5RmWk1AP678WkMb
|
|
|
122
122
|
invenio_vocabularies/contrib/names/permissions.py,sha256=5xrpYsA3oQUJ5lJpF7wjRAFiW-pM6_yP1k9zllbRwnQ,844
|
|
123
123
|
invenio_vocabularies/contrib/names/resources.py,sha256=Z8XqLKfFKE69zdTTvcTDmpEZ6wqiqjIH5tp0LzXTSwQ,1588
|
|
124
124
|
invenio_vocabularies/contrib/names/s3client.py,sha256=c7B9_NbnXCfE4pE_yMTsT6uQ2hgbcRU-KY6nbWFuFzU,1063
|
|
125
|
-
invenio_vocabularies/contrib/names/schema.py,sha256=
|
|
125
|
+
invenio_vocabularies/contrib/names/schema.py,sha256=o5RDy3C9GaqCG6om6q-52t5DAJDwApwbnTUvuZUDQPg,3773
|
|
126
126
|
invenio_vocabularies/contrib/names/services.py,sha256=ntcGUTM0ZsKnRTxIKvZhKrRuup6Tjv965PATCaJR6Cc,2127
|
|
127
127
|
invenio_vocabularies/contrib/names/jsonschemas/__init__.py,sha256=pdDZdyoxqWbAQ6ngiclhYoDUsGKgRDRPXlIDy0U5Jzg,241
|
|
128
128
|
invenio_vocabularies/contrib/names/jsonschemas/names/name-v1.0.0.json,sha256=WlIroNhE9o6oh1Cd13ymBPXuXDOs0NYfjLGtAH417YI,1574
|
|
@@ -305,10 +305,10 @@ invenio_vocabularies/translations/zh_CN/LC_MESSAGES/messages.mo,sha256=6j9luPXUV
|
|
|
305
305
|
invenio_vocabularies/translations/zh_CN/LC_MESSAGES/messages.po,sha256=vg8qC8ofpAdJ3mQz7mWM1ylKDpiNWXFs7rlMdSPkgKk,4629
|
|
306
306
|
invenio_vocabularies/translations/zh_TW/LC_MESSAGES/messages.mo,sha256=NmyVgGfR0Lmqtv34w60tRXjxjNDaBQ4IYJPgi_F8lQk,600
|
|
307
307
|
invenio_vocabularies/translations/zh_TW/LC_MESSAGES/messages.po,sha256=9ACePz_EpB-LfcIJajZ2kp8Q04tcdrQLOtug162ZUss,4115
|
|
308
|
-
invenio_vocabularies-7.0.0.
|
|
309
|
-
invenio_vocabularies-7.0.0.
|
|
310
|
-
invenio_vocabularies-7.0.0.
|
|
311
|
-
invenio_vocabularies-7.0.0.
|
|
312
|
-
invenio_vocabularies-7.0.0.
|
|
313
|
-
invenio_vocabularies-7.0.0.
|
|
314
|
-
invenio_vocabularies-7.0.0.
|
|
308
|
+
invenio_vocabularies-7.0.0.dev2.dist-info/AUTHORS.rst,sha256=8d0p_WWE1r9DavvzMDi2D4YIGBHiMYcN3LYxqQOj8sY,291
|
|
309
|
+
invenio_vocabularies-7.0.0.dev2.dist-info/LICENSE,sha256=UvI8pR8jGWqe0sTkb_hRG6eIrozzWwWzyCGEpuXX4KE,1062
|
|
310
|
+
invenio_vocabularies-7.0.0.dev2.dist-info/METADATA,sha256=EPRWhiL4x2IVfBxUUVmTtsUT3gG1GaCjrWS88kF23M0,12846
|
|
311
|
+
invenio_vocabularies-7.0.0.dev2.dist-info/WHEEL,sha256=9Hm2OB-j1QcCUq9Jguht7ayGIIZBRTdOXD1qg9cCgPM,109
|
|
312
|
+
invenio_vocabularies-7.0.0.dev2.dist-info/entry_points.txt,sha256=lget4Ekno9VRTq36oowWReIJA99165gOp0BOiiET60Y,3179
|
|
313
|
+
invenio_vocabularies-7.0.0.dev2.dist-info/top_level.txt,sha256=x1gRNbaODF_bCD0SBLM3nVOFPGi06cmGX5X94WKrFKk,21
|
|
314
|
+
invenio_vocabularies-7.0.0.dev2.dist-info/RECORD,,
|
{invenio_vocabularies-7.0.0.dev1.dist-info → invenio_vocabularies-7.0.0.dev2.dist-info}/AUTHORS.rst
RENAMED
|
File without changes
|
{invenio_vocabularies-7.0.0.dev1.dist-info → invenio_vocabularies-7.0.0.dev2.dist-info}/LICENSE
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|