nmdc-schema 11.12.1__py3-none-any.whl → 11.14.0__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.
- nmdc_schema/migrators/{migrator_from_11_11_0_to_11_12_0.py → migrator_from_11_11_0_to_11_13_0.py} +3 -3
- nmdc_schema/migrators/migrator_from_11_13_0_to_11_14_0.py +35 -0
- nmdc_schema/migrators/partials/migrator_from_11_11_0_to_11_13_0/__init__.py +30 -0
- nmdc_schema/migrators/partials/{migrator_from_11_11_0_to_11_12_0/migrator_from_11_11_0_to_11_12_0_part_1.py → migrator_from_11_11_0_to_11_13_0/migrator_from_11_11_0_to_11_13_0_part_1.py} +1 -1
- nmdc_schema/migrators/partials/{migrator_from_11_11_0_to_11_12_0/migrator_from_11_11_0_to_11_12_0_part_2.py → migrator_from_11_11_0_to_11_13_0/migrator_from_11_11_0_to_11_13_0_part_2.py} +2 -2
- nmdc_schema/migrators/partials/migrator_from_11_11_0_to_11_13_0/migrator_from_11_11_0_to_11_13_0_part_3.py +47 -0
- nmdc_schema/migrators/partials/{migrator_from_11_11_0_to_11_12_0 → migrator_from_11_13_0_to_11_14_0}/__init__.py +5 -5
- nmdc_schema/migrators/partials/migrator_from_11_13_0_to_11_14_0/migrator_from_11_13_0_to_11_14_0_part_1.py +113 -0
- nmdc_schema/migrators/partials/migrator_from_11_13_0_to_11_14_0/migrator_from_11_13_0_to_11_14_0_part_2.py +40 -0
- nmdc_schema/nmdc-pydantic.py +10558 -12093
- nmdc_schema/nmdc.py +328 -104
- nmdc_schema/nmdc.schema.json +187 -129
- nmdc_schema/nmdc_materialized_patterns.json +10799 -12067
- nmdc_schema/nmdc_materialized_patterns.schema.json +197 -128
- nmdc_schema/nmdc_materialized_patterns.yaml +7466 -8294
- {nmdc_schema-11.12.1.dist-info → nmdc_schema-11.14.0.dist-info}/METADATA +5 -5
- {nmdc_schema-11.12.1.dist-info → nmdc_schema-11.14.0.dist-info}/RECORD +20 -15
- {nmdc_schema-11.12.1.dist-info → nmdc_schema-11.14.0.dist-info}/entry_points.txt +0 -8
- {nmdc_schema-11.12.1.dist-info → nmdc_schema-11.14.0.dist-info}/WHEEL +0 -0
- {nmdc_schema-11.12.1.dist-info → nmdc_schema-11.14.0.dist-info}/licenses/LICENSE +0 -0
|
@@ -1,19 +1,18 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: nmdc_schema
|
|
3
|
-
Version: 11.
|
|
3
|
+
Version: 11.14.0
|
|
4
4
|
Summary: Schema resources for the National Microbiome Data Collaborative (NMDC)
|
|
5
5
|
License: MIT
|
|
6
6
|
License-File: LICENSE
|
|
7
7
|
Keywords: NMDC,schema,metadata,microbiome
|
|
8
8
|
Author: Bill Duncan
|
|
9
9
|
Author-email: wdduncan@gmail.com
|
|
10
|
-
Requires-Python: >=3.
|
|
10
|
+
Requires-Python: >=3.10,<4.0
|
|
11
11
|
Classifier: Development Status :: 5 - Production/Stable
|
|
12
12
|
Classifier: Intended Audience :: Developers
|
|
13
13
|
Classifier: Intended Audience :: Science/Research
|
|
14
14
|
Classifier: License :: OSI Approved :: MIT License
|
|
15
15
|
Classifier: Programming Language :: Python :: 3
|
|
16
|
-
Classifier: Programming Language :: Python :: 3.9
|
|
17
16
|
Classifier: Programming Language :: Python :: 3.10
|
|
18
17
|
Classifier: Programming Language :: Python :: 3.11
|
|
19
18
|
Classifier: Programming Language :: Python :: 3.12
|
|
@@ -26,13 +25,14 @@ Requires-Dist: curies (>=0.9.0,<0.10.0)
|
|
|
26
25
|
Requires-Dist: deprecated (>=1,<2)
|
|
27
26
|
Requires-Dist: jsonasobj2 (>=1,<2)
|
|
28
27
|
Requires-Dist: jsonschema (>=4,<5)
|
|
29
|
-
Requires-Dist: linkml (>=1.9.
|
|
30
|
-
Requires-Dist: linkml-runtime (>=1.9.
|
|
28
|
+
Requires-Dist: linkml (>=1.9.6,<2.0.0)
|
|
29
|
+
Requires-Dist: linkml-runtime (>=1.9.5,<2.0.0)
|
|
31
30
|
Requires-Dist: pymongo (>=4.7.2,<5.0.0)
|
|
32
31
|
Requires-Dist: python-dotenv
|
|
33
32
|
Requires-Dist: pyyaml (>=6,<7)
|
|
34
33
|
Requires-Dist: rdflib (>=6.2.0,<7.0.0)
|
|
35
34
|
Requires-Dist: requests (>=2,<3)
|
|
35
|
+
Requires-Dist: urllib3 (>=2.6.0)
|
|
36
36
|
Project-URL: Documentation, https://microbiomedata.github.io/nmdc-schema/
|
|
37
37
|
Project-URL: Homepage, https://microbiomedata.github.io/nmdc-schema/
|
|
38
38
|
Project-URL: Repository, https://github.com/microbiomedata/nmdc-schema
|
|
@@ -41,7 +41,8 @@ nmdc_schema/migrators/migrator_from_10_5_6_to_10_6_0.py,sha256=_oeQz_mXVC-vyyfUs
|
|
|
41
41
|
nmdc_schema/migrators/migrator_from_10_6_0_to_10_7_0.py,sha256=-FduiWWIioYFQ2eST35NINok6cy6FoPuJ7-UXJPAi_E,450
|
|
42
42
|
nmdc_schema/migrators/migrator_from_11_0_3_to_11_1_0.py,sha256=3hHXGts_sfre4KuIpGCUNyRMgI92_lXm_U2UStU-fdw,1184
|
|
43
43
|
nmdc_schema/migrators/migrator_from_11_10_0_to_11_11_0.py,sha256=R4nUrhxRznukwKgkMQy8uuPzn-fE9AaQYNLLNsVOfTk,1354
|
|
44
|
-
nmdc_schema/migrators/
|
|
44
|
+
nmdc_schema/migrators/migrator_from_11_11_0_to_11_13_0.py,sha256=p0giuWeWOvxLe22T0QXNWxjzWWqgzJ1ZetpdVCz86IY,1354
|
|
45
|
+
nmdc_schema/migrators/migrator_from_11_13_0_to_11_14_0.py,sha256=Y6WY3QGn9fVPh_hzyyC0UXX1U0nQNB624v48sJV_Gzo,1354
|
|
45
46
|
nmdc_schema/migrators/migrator_from_11_1_0_to_11_2_0.py,sha256=xGaG0oilg0Xvq-P6YOZea3EPQU8fyfcKo-KZl4BhgoM,1183
|
|
46
47
|
nmdc_schema/migrators/migrator_from_11_3_0_to_11_4_0.py,sha256=XDRsT9KrKlZTOGHQekESZ2XSYD2UDydF1PWTRIeqOVE,1985
|
|
47
48
|
nmdc_schema/migrators/migrator_from_11_4_0_to_11_5_0.py,sha256=uiFi5USF23lpuAbkDhVufnXxLsM-Aixrj4nw7GY-XO4,357
|
|
@@ -84,9 +85,13 @@ nmdc_schema/migrators/partials/migrator_from_11_0_3_to_11_1_0/migrator_from_11_0
|
|
|
84
85
|
nmdc_schema/migrators/partials/migrator_from_11_10_0_to_11_11_0/__init__.py,sha256=0Vyyg3SaqNsV426IFeWw1xgEDFAol5J57ggk7bDAAf4,1001
|
|
85
86
|
nmdc_schema/migrators/partials/migrator_from_11_10_0_to_11_11_0/migrator_from_11_10_0_to_11_11_0_part_1.py,sha256=JTjgjW8GhpDuNQajNN2EBoDzm6OFJg9E42pR7HDqIiE,3595
|
|
86
87
|
nmdc_schema/migrators/partials/migrator_from_11_10_0_to_11_11_0/migrator_from_11_10_0_to_11_11_0_part_2.py,sha256=cNgxp1XBVKSiQAAhUfLXWvEK8UyJTnveO_c_BqvlCVo,1986
|
|
87
|
-
nmdc_schema/migrators/partials/
|
|
88
|
-
nmdc_schema/migrators/partials/
|
|
89
|
-
nmdc_schema/migrators/partials/
|
|
88
|
+
nmdc_schema/migrators/partials/migrator_from_11_11_0_to_11_13_0/__init__.py,sha256=qWAsZAOL3cOMM67gNVahlcPs9pqkGU8moo4nLJOo_wU,1102
|
|
89
|
+
nmdc_schema/migrators/partials/migrator_from_11_11_0_to_11_13_0/migrator_from_11_11_0_to_11_13_0_part_1.py,sha256=ajPhHPDK1loTL7j_3hzBZo_EfT5gtoXlsNFmpDZCgPs,8668
|
|
90
|
+
nmdc_schema/migrators/partials/migrator_from_11_11_0_to_11_13_0/migrator_from_11_11_0_to_11_13_0_part_2.py,sha256=sW5JhlO2DaGh9kvI9qWJQ85eYyUo9976sBurPdZ69Kk,4858
|
|
91
|
+
nmdc_schema/migrators/partials/migrator_from_11_11_0_to_11_13_0/migrator_from_11_11_0_to_11_13_0_part_3.py,sha256=XKrq0jBLn6v4O96j045WkJsGubwP6ikLNyglEKH1_jE,1920
|
|
92
|
+
nmdc_schema/migrators/partials/migrator_from_11_13_0_to_11_14_0/__init__.py,sha256=xXed_UcqkW7zWope_4ODapGf3xS_NKztCh6sK8GoUkc,999
|
|
93
|
+
nmdc_schema/migrators/partials/migrator_from_11_13_0_to_11_14_0/migrator_from_11_13_0_to_11_14_0_part_1.py,sha256=7QuBZJlQE_emGgyQMfuiGBDDhdVVu57z6KQ8PStqyTs,5008
|
|
94
|
+
nmdc_schema/migrators/partials/migrator_from_11_13_0_to_11_14_0/migrator_from_11_13_0_to_11_14_0_part_2.py,sha256=q5v3u6vFoIR12FbbI1Wji8guZ-D0RSxlOSTKzR0uNh0,1432
|
|
90
95
|
nmdc_schema/migrators/partials/migrator_from_11_1_0_to_11_2_0/__init__.py,sha256=e-neqgmL6Zsy6h5PGmWPj9qIqrTm3yvNgo2l2i7Sduc,990
|
|
91
96
|
nmdc_schema/migrators/partials/migrator_from_11_1_0_to_11_2_0/migrator_from_11_1_0_to_11_2_0_part_1.py,sha256=4nN_2iZqML84R9EgznIcj7FjIlRHSSM8XqLerUgMYbI,13230
|
|
92
97
|
nmdc_schema/migrators/partials/migrator_from_11_1_0_to_11_2_0/migrator_from_11_1_0_to_11_2_0_part_2.py,sha256=HLGoX3KQZglHPODDO5FFHu2gjFjyBx8oGJ3D9PAkhNI,1628
|
|
@@ -106,18 +111,18 @@ nmdc_schema/migrators/partials/migrator_from_11_9_1_to_11_10_0/__init__.py,sha25
|
|
|
106
111
|
nmdc_schema/migrators/partials/migrator_from_11_9_1_to_11_10_0/migrator_from_11_9_1_to_11_10_0_part_1.py,sha256=6MYmrB9yfJ3XFb2QabTcJeycK2tyVO3MtSItns2s9Zg,35421
|
|
107
112
|
nmdc_schema/migrators/partials/migrator_from_11_9_1_to_11_10_0/migrator_from_11_9_1_to_11_10_0_part_2.py,sha256=wzard2sUTeRS7voVTfPt3_OtafTffnv0o0OyE1OBzA0,2987
|
|
108
113
|
nmdc_schema/migrators/partials/migrator_from_11_9_1_to_11_10_0/migrator_from_11_9_1_to_11_10_0_part_3.py,sha256=crm2NEmn0xepEMKWHvCSkfX3G6hRn377f38rq24XlO8,3710
|
|
109
|
-
nmdc_schema/nmdc-pydantic.py,sha256
|
|
110
|
-
nmdc_schema/nmdc.py,sha256=
|
|
111
|
-
nmdc_schema/nmdc.schema.json,sha256=
|
|
114
|
+
nmdc_schema/nmdc-pydantic.py,sha256=-KFRbsDhJgamDFB25YrE-MDyJIYotUfumfyCtsVp16o,1407574
|
|
115
|
+
nmdc_schema/nmdc.py,sha256=ekyLtGlyT7dMcZ-dwui7P_ZRc5NfM99xiZ3Attlk0rw,744344
|
|
116
|
+
nmdc_schema/nmdc.schema.json,sha256=rwNxfZfGmJIP_uLwslNvX_xh64_sMpUWlsYGnVbisQ0,632806
|
|
112
117
|
nmdc_schema/nmdc_data.py,sha256=_wNKi5NDxuvvRsJEim2ialX7VJkDBJLRpiTOPpFHBm8,9608
|
|
113
|
-
nmdc_schema/nmdc_materialized_patterns.json,sha256
|
|
114
|
-
nmdc_schema/nmdc_materialized_patterns.schema.json,sha256=
|
|
115
|
-
nmdc_schema/nmdc_materialized_patterns.yaml,sha256=
|
|
118
|
+
nmdc_schema/nmdc_materialized_patterns.json,sha256=4BxPDYqUiYMKvJfTMIXeM8fkcnv5KDEX75qlRFe518g,915842
|
|
119
|
+
nmdc_schema/nmdc_materialized_patterns.schema.json,sha256=UYOWffYZaiUfVdCV0GXRnN2o2EIeYFVe8aZ2IdPv46A,642131
|
|
120
|
+
nmdc_schema/nmdc_materialized_patterns.yaml,sha256=rMUjokG3a2WfhGS4YWonbIc4Rv1r9szX9_7D2KxINcc,711525
|
|
116
121
|
nmdc_schema/nmdc_schema_validation_plugin.py,sha256=rjtn1tYhngGyc1AV8vcT8BJ9a_MmHbcK3hRUf9dzPtA,4799
|
|
117
122
|
nmdc_schema/nmdc_version.py,sha256=DsfEKnmN3LHR831WWELxyfZY6rnP9U8tfygamkrsaHY,2305
|
|
118
123
|
nmdc_schema/validate_nmdc_json.py,sha256=PVJV2O1qQXMi206HaUKqRNLiLc164OpNYKPURSKN8_E,3148
|
|
119
|
-
nmdc_schema-11.
|
|
120
|
-
nmdc_schema-11.
|
|
121
|
-
nmdc_schema-11.
|
|
122
|
-
nmdc_schema-11.
|
|
123
|
-
nmdc_schema-11.
|
|
124
|
+
nmdc_schema-11.14.0.dist-info/METADATA,sha256=Qqe_PIlPIQt1vy2rup3JD0DixWGnpe7iMVqsgwyCHns,5883
|
|
125
|
+
nmdc_schema-11.14.0.dist-info/WHEEL,sha256=zp0Cn7JsFoX2ATtOhtaFYIiE2rmFAD4OcMhtUki8W3U,88
|
|
126
|
+
nmdc_schema-11.14.0.dist-info/entry_points.txt,sha256=ioyD5P6op5Zy68bqg5MafLAryb73rfzyx8YXKItroC8,1531
|
|
127
|
+
nmdc_schema-11.14.0.dist-info/licenses/LICENSE,sha256=ogEPNDSH0_dhiv_lT3ifVIdgIzHAqNA_SemnxUfPBJk,7048
|
|
128
|
+
nmdc_schema-11.14.0.dist-info/RECORD,,
|
|
@@ -22,12 +22,4 @@ schema-pattern-linting=src.scripts.schema_pattern_linting:main
|
|
|
22
22
|
schema-view-relation-graph=src.scripts.schema_view_relation_graph:cli
|
|
23
23
|
scrutinize-elements=src.scripts.scrutinize_elements:process_schema_elements
|
|
24
24
|
slot-range-type-reporter=src.scripts.slot_range_type_reporter:cli
|
|
25
|
-
units-mongodb-analyze=units.scripts.mongodb_analyze_units:main
|
|
26
|
-
units-schema-convert=units.scripts.schema_convert_to_ucum:main
|
|
27
|
-
units-schema-extract=units.scripts.schema_extract_preferred_units:main
|
|
28
|
-
units-schema-extract-slot-unit-pairs=units.scripts.schema_expand_storage_units:main
|
|
29
|
-
units-schema-generate=units.scripts.schema_generate_yq_commands:main
|
|
30
|
-
units-testdata-check=units.scripts.testdata_check_has_unit:main
|
|
31
|
-
units-testdata-extract=units.scripts.testdata_extract_quantity_values:main
|
|
32
|
-
units-ucum-validate=units.scripts.ucum_validate_units:main
|
|
33
25
|
|
|
File without changes
|
|
File without changes
|