liminal-orm 4.3.0__tar.gz → 4.3.2__tar.gz
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.
- {liminal_orm-4.3.0 → liminal_orm-4.3.2}/PKG-INFO +1 -1
- liminal_orm-4.3.2/liminal/.gitignore +1 -0
- liminal_orm-4.3.0/liminal/__init__.py → liminal_orm-4.3.2/liminal/.lock +0 -0
- liminal_orm-4.3.2/liminal/CACHEDIR.TAG +1 -0
- {liminal_orm-4.3.0 → liminal_orm-4.3.2}/liminal/cli/utils.py +13 -1
- {liminal_orm-4.3.0 → liminal_orm-4.3.2}/liminal/entity_schemas/operations.py +4 -4
- {liminal_orm-4.3.0 → liminal_orm-4.3.2}/liminal/entity_schemas/tag_schema_models.py +0 -1
- liminal_orm-4.3.2/liminal/pyvenv.cfg +5 -0
- liminal_orm-4.3.2/liminal/share/jupyter/kernels/python3/kernel.json +14 -0
- liminal_orm-4.3.2/liminal/share/jupyter/kernels/python3/logo-32x32.png +0 -0
- liminal_orm-4.3.2/liminal/share/jupyter/kernels/python3/logo-64x64.png +0 -0
- liminal_orm-4.3.2/liminal/share/jupyter/kernels/python3/logo-svg.svg +265 -0
- liminal_orm-4.3.2/liminal/share/man/man1/ipython.1 +60 -0
- liminal_orm-4.3.2/liminal/tests/__init__.py +0 -0
- {liminal_orm-4.3.0 → liminal_orm-4.3.2}/pyproject.toml +1 -1
- {liminal_orm-4.3.0 → liminal_orm-4.3.2}/.gitignore +0 -0
- {liminal_orm-4.3.0 → liminal_orm-4.3.2}/LICENSE.md +0 -0
- {liminal_orm-4.3.0 → liminal_orm-4.3.2}/README.md +0 -0
- {liminal_orm-4.3.0/liminal/tests → liminal_orm-4.3.2/liminal}/__init__.py +0 -0
- {liminal_orm-4.3.0 → liminal_orm-4.3.2}/liminal/base/base_dropdown.py +0 -0
- {liminal_orm-4.3.0 → liminal_orm-4.3.2}/liminal/base/base_operation.py +0 -0
- {liminal_orm-4.3.0 → liminal_orm-4.3.2}/liminal/base/base_validation_filters.py +0 -0
- {liminal_orm-4.3.0 → liminal_orm-4.3.2}/liminal/base/compare_operation.py +0 -0
- {liminal_orm-4.3.0 → liminal_orm-4.3.2}/liminal/base/name_template_parts.py +0 -0
- {liminal_orm-4.3.0 → liminal_orm-4.3.2}/liminal/base/properties/base_field_properties.py +0 -0
- {liminal_orm-4.3.0 → liminal_orm-4.3.2}/liminal/base/properties/base_name_template.py +0 -0
- {liminal_orm-4.3.0 → liminal_orm-4.3.2}/liminal/base/properties/base_schema_properties.py +0 -0
- {liminal_orm-4.3.0 → liminal_orm-4.3.2}/liminal/base/str_enum.py +0 -0
- {liminal_orm-4.3.0 → liminal_orm-4.3.2}/liminal/cli/cli.py +0 -0
- {liminal_orm-4.3.0 → liminal_orm-4.3.2}/liminal/cli/controller.py +0 -0
- {liminal_orm-4.3.0 → liminal_orm-4.3.2}/liminal/cli/live_test_dropdown_migration.py +0 -0
- {liminal_orm-4.3.0 → liminal_orm-4.3.2}/liminal/cli/live_test_entity_schema_migration.py +0 -0
- {liminal_orm-4.3.0 → liminal_orm-4.3.2}/liminal/connection/__init__.py +0 -0
- {liminal_orm-4.3.0 → liminal_orm-4.3.2}/liminal/connection/benchling_connection.py +0 -0
- {liminal_orm-4.3.0 → liminal_orm-4.3.2}/liminal/connection/benchling_service.py +0 -0
- {liminal_orm-4.3.0 → liminal_orm-4.3.2}/liminal/dropdowns/api.py +0 -0
- {liminal_orm-4.3.0 → liminal_orm-4.3.2}/liminal/dropdowns/compare.py +0 -0
- {liminal_orm-4.3.0 → liminal_orm-4.3.2}/liminal/dropdowns/generate_files.py +0 -0
- {liminal_orm-4.3.0 → liminal_orm-4.3.2}/liminal/dropdowns/operations.py +0 -0
- {liminal_orm-4.3.0 → liminal_orm-4.3.2}/liminal/dropdowns/utils.py +0 -0
- {liminal_orm-4.3.0 → liminal_orm-4.3.2}/liminal/entity_schemas/api.py +0 -0
- {liminal_orm-4.3.0 → liminal_orm-4.3.2}/liminal/entity_schemas/compare.py +0 -0
- {liminal_orm-4.3.0 → liminal_orm-4.3.2}/liminal/entity_schemas/entity_schema_models.py +0 -0
- {liminal_orm-4.3.0 → liminal_orm-4.3.2}/liminal/entity_schemas/generate_files.py +0 -0
- {liminal_orm-4.3.0 → liminal_orm-4.3.2}/liminal/entity_schemas/utils.py +0 -0
- {liminal_orm-4.3.0 → liminal_orm-4.3.2}/liminal/enums/__init__.py +0 -0
- {liminal_orm-4.3.0 → liminal_orm-4.3.2}/liminal/enums/benchling_api_field_type.py +0 -0
- {liminal_orm-4.3.0 → liminal_orm-4.3.2}/liminal/enums/benchling_entity_type.py +0 -0
- {liminal_orm-4.3.0 → liminal_orm-4.3.2}/liminal/enums/benchling_field_type.py +0 -0
- {liminal_orm-4.3.0 → liminal_orm-4.3.2}/liminal/enums/benchling_folder_item_type.py +0 -0
- {liminal_orm-4.3.0 → liminal_orm-4.3.2}/liminal/enums/benchling_naming_strategy.py +0 -0
- {liminal_orm-4.3.0 → liminal_orm-4.3.2}/liminal/enums/benchling_sequence_type.py +0 -0
- {liminal_orm-4.3.0 → liminal_orm-4.3.2}/liminal/enums/name_template_part_type.py +0 -0
- {liminal_orm-4.3.0 → liminal_orm-4.3.2}/liminal/enums/sequence_constraint.py +0 -0
- {liminal_orm-4.3.0 → liminal_orm-4.3.2}/liminal/external/__init__.py +0 -0
- {liminal_orm-4.3.0 → liminal_orm-4.3.2}/liminal/mappers.py +0 -0
- {liminal_orm-4.3.0 → liminal_orm-4.3.2}/liminal/migrate/components.py +0 -0
- {liminal_orm-4.3.0 → liminal_orm-4.3.2}/liminal/migrate/revision.py +0 -0
- {liminal_orm-4.3.0 → liminal_orm-4.3.2}/liminal/migrate/revisions_timeline.py +0 -0
- {liminal_orm-4.3.0 → liminal_orm-4.3.2}/liminal/orm/base.py +0 -0
- {liminal_orm-4.3.0 → liminal_orm-4.3.2}/liminal/orm/base_model.py +0 -0
- {liminal_orm-4.3.0 → liminal_orm-4.3.2}/liminal/orm/base_results_model.py +0 -0
- {liminal_orm-4.3.0 → liminal_orm-4.3.2}/liminal/orm/base_tables/registry_entity.py +0 -0
- {liminal_orm-4.3.0 → liminal_orm-4.3.2}/liminal/orm/base_tables/schema.py +0 -0
- {liminal_orm-4.3.0 → liminal_orm-4.3.2}/liminal/orm/base_tables/user.py +0 -0
- {liminal_orm-4.3.0 → liminal_orm-4.3.2}/liminal/orm/column.py +0 -0
- {liminal_orm-4.3.0 → liminal_orm-4.3.2}/liminal/orm/mixins.py +0 -0
- {liminal_orm-4.3.0 → liminal_orm-4.3.2}/liminal/orm/name_template.py +0 -0
- {liminal_orm-4.3.0 → liminal_orm-4.3.2}/liminal/orm/name_template_parts.py +0 -0
- {liminal_orm-4.3.0 → liminal_orm-4.3.2}/liminal/orm/relationship.py +0 -0
- {liminal_orm-4.3.0 → liminal_orm-4.3.2}/liminal/orm/results_schema_properties.py +0 -0
- {liminal_orm-4.3.0 → liminal_orm-4.3.2}/liminal/orm/schema_properties.py +0 -0
- {liminal_orm-4.3.0 → liminal_orm-4.3.2}/liminal/py.typed +0 -0
- {liminal_orm-4.3.0 → liminal_orm-4.3.2}/liminal/results_schemas/generate_files.py +0 -0
- {liminal_orm-4.3.0 → liminal_orm-4.3.2}/liminal/results_schemas/models/results_schema_model.py +0 -0
- {liminal_orm-4.3.0 → liminal_orm-4.3.2}/liminal/results_schemas/utils.py +0 -0
- {liminal_orm-4.3.0 → liminal_orm-4.3.2}/liminal/tests/conftest.py +0 -0
- {liminal_orm-4.3.0 → liminal_orm-4.3.2}/liminal/tests/from benchling_sdk.py +0 -0
- {liminal_orm-4.3.0 → liminal_orm-4.3.2}/liminal/tests/test_dropdown_compare.py +0 -0
- {liminal_orm-4.3.0 → liminal_orm-4.3.2}/liminal/tests/test_entity_schema_compare.py +0 -0
- {liminal_orm-4.3.0 → liminal_orm-4.3.2}/liminal/unit_dictionary/utils.py +0 -0
- {liminal_orm-4.3.0 → liminal_orm-4.3.2}/liminal/utils.py +0 -0
- {liminal_orm-4.3.0 → liminal_orm-4.3.2}/liminal/validation/__init__.py +0 -0
- {liminal_orm-4.3.0 → liminal_orm-4.3.2}/liminal/validation/validation_severity.py +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: liminal-orm
|
3
|
-
Version: 4.3.
|
3
|
+
Version: 4.3.2
|
4
4
|
Summary: An ORM and toolkit that builds on top of Benchling's platform to keep your schemas and downstream code dependencies in sync.
|
5
5
|
Project-URL: Homepage, https://github.com/dynotx/liminal-orm
|
6
6
|
Project-URL: Repository, https://github.com/dynotx/liminal-orm
|
@@ -0,0 +1 @@
|
|
1
|
+
*
|
File without changes
|
@@ -0,0 +1 @@
|
|
1
|
+
Signature: 8a477f597d28d172789f06886806bc55
|
@@ -1,6 +1,7 @@
|
|
1
1
|
import importlib.util
|
2
2
|
from logging import Logger
|
3
3
|
from pathlib import Path
|
4
|
+
import sys
|
4
5
|
|
5
6
|
from liminal.connection.benchling_connection import BenchlingConnection
|
6
7
|
|
@@ -47,7 +48,18 @@ def _read_local_env_file(
|
|
47
48
|
if spec is None or spec.loader is None:
|
48
49
|
raise Exception(f"Could not find {env_file_path}.")
|
49
50
|
module = importlib.util.module_from_spec(spec)
|
50
|
-
|
51
|
+
|
52
|
+
parent_dir = str(module_path.parent.parent)
|
53
|
+
sys_path_modified = False
|
54
|
+
if parent_dir not in sys.path:
|
55
|
+
sys.path.insert(0, parent_dir)
|
56
|
+
sys_path_modified = True
|
57
|
+
try:
|
58
|
+
spec.loader.exec_module(module)
|
59
|
+
finally:
|
60
|
+
if sys_path_modified:
|
61
|
+
sys.path.remove(parent_dir)
|
62
|
+
|
51
63
|
for attr_name in dir(module):
|
52
64
|
bc = getattr(module, attr_name)
|
53
65
|
if isinstance(bc, BenchlingConnection):
|
@@ -445,11 +445,11 @@ class ArchiveEntitySchemaField(BaseOperation):
|
|
445
445
|
|
446
446
|
def _validate(self, benchling_service: BenchlingService) -> TagSchemaModel:
|
447
447
|
tag_schema = TagSchemaModel.get_one(benchling_service, self.wh_schema_name)
|
448
|
+
name_template_field_ids = [
|
449
|
+
p.fieldId for p in tag_schema.nameTemplateParts if p is not None
|
450
|
+
]
|
448
451
|
field = tag_schema.get_field(self.wh_field_name)
|
449
|
-
if
|
450
|
-
tag_schema.nameTemplateFields
|
451
|
-
and field.name in tag_schema.nameTemplateFields
|
452
|
-
):
|
452
|
+
if field.id in name_template_field_ids:
|
453
453
|
raise ValueError(
|
454
454
|
f"Cannot archive field {self.wh_field_name} on entity schema {self.wh_schema_name}. Field is used in name template."
|
455
455
|
)
|
@@ -378,7 +378,6 @@ class TagSchemaModel(BaseModel):
|
|
378
378
|
labelingStrategies: list[str]
|
379
379
|
mixtureSchemaConfig: MixtureSchemaConfig | None
|
380
380
|
name: str | None
|
381
|
-
nameTemplateFields: list[str] | None
|
382
381
|
nameTemplateParts: list[NameTemplatePartModel] | None
|
383
382
|
permissions: dict[str, bool] | None
|
384
383
|
prefix: str | None
|
Binary file
|
Binary file
|
@@ -0,0 +1,265 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
2
|
+
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
3
|
+
|
4
|
+
<svg
|
5
|
+
version="1.0"
|
6
|
+
id="svg2"
|
7
|
+
sodipodi:version="0.32"
|
8
|
+
inkscape:version="1.2.1 (9c6d41e410, 2022-07-14)"
|
9
|
+
sodipodi:docname="python-logo-only.svg"
|
10
|
+
width="83.371017pt"
|
11
|
+
height="101.00108pt"
|
12
|
+
inkscape:export-filename="python-logo-only.png"
|
13
|
+
inkscape:export-xdpi="232.44"
|
14
|
+
inkscape:export-ydpi="232.44"
|
15
|
+
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
16
|
+
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
17
|
+
xmlns:xlink="http://www.w3.org/1999/xlink"
|
18
|
+
xmlns="http://www.w3.org/2000/svg"
|
19
|
+
xmlns:svg="http://www.w3.org/2000/svg"
|
20
|
+
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
21
|
+
xmlns:cc="http://creativecommons.org/ns#"
|
22
|
+
xmlns:dc="http://purl.org/dc/elements/1.1/">
|
23
|
+
<metadata
|
24
|
+
id="metadata371">
|
25
|
+
<rdf:RDF>
|
26
|
+
<cc:Work
|
27
|
+
rdf:about="">
|
28
|
+
<dc:format>image/svg+xml</dc:format>
|
29
|
+
<dc:type
|
30
|
+
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
31
|
+
</cc:Work>
|
32
|
+
</rdf:RDF>
|
33
|
+
</metadata>
|
34
|
+
<sodipodi:namedview
|
35
|
+
inkscape:window-height="2080"
|
36
|
+
inkscape:window-width="1976"
|
37
|
+
inkscape:pageshadow="2"
|
38
|
+
inkscape:pageopacity="0.0"
|
39
|
+
guidetolerance="10.0"
|
40
|
+
gridtolerance="10.0"
|
41
|
+
objecttolerance="10.0"
|
42
|
+
borderopacity="1.0"
|
43
|
+
bordercolor="#666666"
|
44
|
+
pagecolor="#ffffff"
|
45
|
+
id="base"
|
46
|
+
inkscape:zoom="2.1461642"
|
47
|
+
inkscape:cx="91.558698"
|
48
|
+
inkscape:cy="47.9926"
|
49
|
+
inkscape:window-x="1092"
|
50
|
+
inkscape:window-y="72"
|
51
|
+
inkscape:current-layer="svg2"
|
52
|
+
width="210mm"
|
53
|
+
height="40mm"
|
54
|
+
units="mm"
|
55
|
+
inkscape:showpageshadow="2"
|
56
|
+
inkscape:pagecheckerboard="0"
|
57
|
+
inkscape:deskcolor="#d1d1d1"
|
58
|
+
inkscape:document-units="pt"
|
59
|
+
showgrid="false"
|
60
|
+
inkscape:window-maximized="0" />
|
61
|
+
<defs
|
62
|
+
id="defs4">
|
63
|
+
<linearGradient
|
64
|
+
id="linearGradient2795">
|
65
|
+
<stop
|
66
|
+
style="stop-color:#b8b8b8;stop-opacity:0.49803922;"
|
67
|
+
offset="0"
|
68
|
+
id="stop2797" />
|
69
|
+
<stop
|
70
|
+
style="stop-color:#7f7f7f;stop-opacity:0;"
|
71
|
+
offset="1"
|
72
|
+
id="stop2799" />
|
73
|
+
</linearGradient>
|
74
|
+
<linearGradient
|
75
|
+
id="linearGradient2787">
|
76
|
+
<stop
|
77
|
+
style="stop-color:#7f7f7f;stop-opacity:0.5;"
|
78
|
+
offset="0"
|
79
|
+
id="stop2789" />
|
80
|
+
<stop
|
81
|
+
style="stop-color:#7f7f7f;stop-opacity:0;"
|
82
|
+
offset="1"
|
83
|
+
id="stop2791" />
|
84
|
+
</linearGradient>
|
85
|
+
<linearGradient
|
86
|
+
id="linearGradient3676">
|
87
|
+
<stop
|
88
|
+
style="stop-color:#b2b2b2;stop-opacity:0.5;"
|
89
|
+
offset="0"
|
90
|
+
id="stop3678" />
|
91
|
+
<stop
|
92
|
+
style="stop-color:#b3b3b3;stop-opacity:0;"
|
93
|
+
offset="1"
|
94
|
+
id="stop3680" />
|
95
|
+
</linearGradient>
|
96
|
+
<linearGradient
|
97
|
+
id="linearGradient3236">
|
98
|
+
<stop
|
99
|
+
style="stop-color:#f4f4f4;stop-opacity:1"
|
100
|
+
offset="0"
|
101
|
+
id="stop3244" />
|
102
|
+
<stop
|
103
|
+
style="stop-color:white;stop-opacity:1"
|
104
|
+
offset="1"
|
105
|
+
id="stop3240" />
|
106
|
+
</linearGradient>
|
107
|
+
<linearGradient
|
108
|
+
id="linearGradient4671">
|
109
|
+
<stop
|
110
|
+
style="stop-color:#ffd43b;stop-opacity:1;"
|
111
|
+
offset="0"
|
112
|
+
id="stop4673" />
|
113
|
+
<stop
|
114
|
+
style="stop-color:#ffe873;stop-opacity:1"
|
115
|
+
offset="1"
|
116
|
+
id="stop4675" />
|
117
|
+
</linearGradient>
|
118
|
+
<linearGradient
|
119
|
+
id="linearGradient4689">
|
120
|
+
<stop
|
121
|
+
style="stop-color:#5a9fd4;stop-opacity:1;"
|
122
|
+
offset="0"
|
123
|
+
id="stop4691" />
|
124
|
+
<stop
|
125
|
+
style="stop-color:#306998;stop-opacity:1;"
|
126
|
+
offset="1"
|
127
|
+
id="stop4693" />
|
128
|
+
</linearGradient>
|
129
|
+
<linearGradient
|
130
|
+
x1="224.23996"
|
131
|
+
y1="144.75717"
|
132
|
+
x2="-65.308502"
|
133
|
+
y2="144.75717"
|
134
|
+
id="linearGradient2987"
|
135
|
+
xlink:href="#linearGradient4671"
|
136
|
+
gradientUnits="userSpaceOnUse"
|
137
|
+
gradientTransform="translate(100.2702,99.61116)" />
|
138
|
+
<linearGradient
|
139
|
+
x1="172.94208"
|
140
|
+
y1="77.475983"
|
141
|
+
x2="26.670298"
|
142
|
+
y2="76.313133"
|
143
|
+
id="linearGradient2990"
|
144
|
+
xlink:href="#linearGradient4689"
|
145
|
+
gradientUnits="userSpaceOnUse"
|
146
|
+
gradientTransform="translate(100.2702,99.61116)" />
|
147
|
+
<linearGradient
|
148
|
+
inkscape:collect="always"
|
149
|
+
xlink:href="#linearGradient4689"
|
150
|
+
id="linearGradient2587"
|
151
|
+
gradientUnits="userSpaceOnUse"
|
152
|
+
gradientTransform="translate(100.2702,99.61116)"
|
153
|
+
x1="172.94208"
|
154
|
+
y1="77.475983"
|
155
|
+
x2="26.670298"
|
156
|
+
y2="76.313133" />
|
157
|
+
<linearGradient
|
158
|
+
inkscape:collect="always"
|
159
|
+
xlink:href="#linearGradient4671"
|
160
|
+
id="linearGradient2589"
|
161
|
+
gradientUnits="userSpaceOnUse"
|
162
|
+
gradientTransform="translate(100.2702,99.61116)"
|
163
|
+
x1="224.23996"
|
164
|
+
y1="144.75717"
|
165
|
+
x2="-65.308502"
|
166
|
+
y2="144.75717" />
|
167
|
+
<linearGradient
|
168
|
+
inkscape:collect="always"
|
169
|
+
xlink:href="#linearGradient4689"
|
170
|
+
id="linearGradient2248"
|
171
|
+
gradientUnits="userSpaceOnUse"
|
172
|
+
gradientTransform="translate(100.2702,99.61116)"
|
173
|
+
x1="172.94208"
|
174
|
+
y1="77.475983"
|
175
|
+
x2="26.670298"
|
176
|
+
y2="76.313133" />
|
177
|
+
<linearGradient
|
178
|
+
inkscape:collect="always"
|
179
|
+
xlink:href="#linearGradient4671"
|
180
|
+
id="linearGradient2250"
|
181
|
+
gradientUnits="userSpaceOnUse"
|
182
|
+
gradientTransform="translate(100.2702,99.61116)"
|
183
|
+
x1="224.23996"
|
184
|
+
y1="144.75717"
|
185
|
+
x2="-65.308502"
|
186
|
+
y2="144.75717" />
|
187
|
+
<linearGradient
|
188
|
+
inkscape:collect="always"
|
189
|
+
xlink:href="#linearGradient4671"
|
190
|
+
id="linearGradient2255"
|
191
|
+
gradientUnits="userSpaceOnUse"
|
192
|
+
gradientTransform="matrix(0.562541,0,0,0.567972,-11.5974,-7.60954)"
|
193
|
+
x1="224.23996"
|
194
|
+
y1="144.75717"
|
195
|
+
x2="-65.308502"
|
196
|
+
y2="144.75717" />
|
197
|
+
<linearGradient
|
198
|
+
inkscape:collect="always"
|
199
|
+
xlink:href="#linearGradient4689"
|
200
|
+
id="linearGradient2258"
|
201
|
+
gradientUnits="userSpaceOnUse"
|
202
|
+
gradientTransform="matrix(0.562541,0,0,0.567972,-11.5974,-7.60954)"
|
203
|
+
x1="172.94208"
|
204
|
+
y1="76.176224"
|
205
|
+
x2="26.670298"
|
206
|
+
y2="76.313133" />
|
207
|
+
<radialGradient
|
208
|
+
inkscape:collect="always"
|
209
|
+
xlink:href="#linearGradient2795"
|
210
|
+
id="radialGradient2801"
|
211
|
+
cx="61.518883"
|
212
|
+
cy="132.28575"
|
213
|
+
fx="61.518883"
|
214
|
+
fy="132.28575"
|
215
|
+
r="29.036913"
|
216
|
+
gradientTransform="matrix(1,0,0,0.177966,0,108.7434)"
|
217
|
+
gradientUnits="userSpaceOnUse" />
|
218
|
+
<linearGradient
|
219
|
+
inkscape:collect="always"
|
220
|
+
xlink:href="#linearGradient4671"
|
221
|
+
id="linearGradient1475"
|
222
|
+
gradientUnits="userSpaceOnUse"
|
223
|
+
gradientTransform="matrix(0.562541,0,0,0.567972,-14.99112,-11.702371)"
|
224
|
+
x1="150.96111"
|
225
|
+
y1="192.35176"
|
226
|
+
x2="112.03144"
|
227
|
+
y2="137.27299" />
|
228
|
+
<linearGradient
|
229
|
+
inkscape:collect="always"
|
230
|
+
xlink:href="#linearGradient4689"
|
231
|
+
id="linearGradient1478"
|
232
|
+
gradientUnits="userSpaceOnUse"
|
233
|
+
gradientTransform="matrix(0.562541,0,0,0.567972,-14.99112,-11.702371)"
|
234
|
+
x1="26.648937"
|
235
|
+
y1="20.603781"
|
236
|
+
x2="135.66525"
|
237
|
+
y2="114.39767" />
|
238
|
+
<radialGradient
|
239
|
+
inkscape:collect="always"
|
240
|
+
xlink:href="#linearGradient2795"
|
241
|
+
id="radialGradient1480"
|
242
|
+
gradientUnits="userSpaceOnUse"
|
243
|
+
gradientTransform="matrix(1.7490565e-8,-0.23994696,1.054668,3.7915457e-7,-83.7008,142.46201)"
|
244
|
+
cx="61.518883"
|
245
|
+
cy="132.28575"
|
246
|
+
fx="61.518883"
|
247
|
+
fy="132.28575"
|
248
|
+
r="29.036913" />
|
249
|
+
</defs>
|
250
|
+
<path
|
251
|
+
style="fill:url(#linearGradient1478);fill-opacity:1"
|
252
|
+
d="M 54.918785,9.1927421e-4 C 50.335132,0.02221727 45.957846,0.41313697 42.106285,1.0946693 30.760069,3.0991731 28.700036,7.2947714 28.700035,15.032169 v 10.21875 h 26.8125 v 3.40625 h -26.8125 -10.0625 c -7.792459,0 -14.6157588,4.683717 -16.7499998,13.59375 -2.46181998,10.212966 -2.57101508,16.586023 0,27.25 1.9059283,7.937852 6.4575432,13.593748 14.2499998,13.59375 h 9.21875 v -12.25 c 0,-8.849902 7.657144,-16.656248 16.75,-16.65625 h 26.78125 c 7.454951,0 13.406253,-6.138164 13.40625,-13.625 v -25.53125 c 0,-7.2663386 -6.12998,-12.7247771 -13.40625,-13.9374997 C 64.281548,0.32794397 59.502438,-0.02037903 54.918785,9.1927421e-4 Z m -14.5,8.21875012579 c 2.769547,0 5.03125,2.2986456 5.03125,5.1249996 -2e-6,2.816336 -2.261703,5.09375 -5.03125,5.09375 -2.779476,-1e-6 -5.03125,-2.277415 -5.03125,-5.09375 -10e-7,-2.826353 2.251774,-5.1249996 5.03125,-5.1249996 z"
|
253
|
+
id="path1948" />
|
254
|
+
<path
|
255
|
+
style="fill:url(#linearGradient1475);fill-opacity:1"
|
256
|
+
d="m 85.637535,28.657169 v 11.90625 c 0,9.230755 -7.825895,16.999999 -16.75,17 h -26.78125 c -7.335833,0 -13.406249,6.278483 -13.40625,13.625 v 25.531247 c 0,7.266344 6.318588,11.540324 13.40625,13.625004 8.487331,2.49561 16.626237,2.94663 26.78125,0 6.750155,-1.95439 13.406253,-5.88761 13.40625,-13.625004 V 86.500919 h -26.78125 v -3.40625 h 26.78125 13.406254 c 7.792461,0 10.696251,-5.435408 13.406241,-13.59375 2.79933,-8.398886 2.68022,-16.475776 0,-27.25 -1.92578,-7.757441 -5.60387,-13.59375 -13.406241,-13.59375 z m -15.0625,64.65625 c 2.779478,3e-6 5.03125,2.277417 5.03125,5.093747 -2e-6,2.826354 -2.251775,5.125004 -5.03125,5.125004 -2.76955,0 -5.03125,-2.29865 -5.03125,-5.125004 2e-6,-2.81633 2.261697,-5.093747 5.03125,-5.093747 z"
|
257
|
+
id="path1950" />
|
258
|
+
<ellipse
|
259
|
+
style="opacity:0.44382;fill:url(#radialGradient1480);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:15.4174;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
260
|
+
id="path1894"
|
261
|
+
cx="55.816761"
|
262
|
+
cy="127.70079"
|
263
|
+
rx="35.930977"
|
264
|
+
ry="6.9673119" />
|
265
|
+
</svg>
|
@@ -0,0 +1,60 @@
|
|
1
|
+
.\" Hey, EMACS: -*- nroff -*-
|
2
|
+
.\" First parameter, NAME, should be all caps
|
3
|
+
.\" Second parameter, SECTION, should be 1-8, maybe w/ subsection
|
4
|
+
.\" other parameters are allowed: see man(7), man(1)
|
5
|
+
.TH IPYTHON 1 "July 15, 2011"
|
6
|
+
.\" Please adjust this date whenever revising the manpage.
|
7
|
+
.\"
|
8
|
+
.\" Some roff macros, for reference:
|
9
|
+
.\" .nh disable hyphenation
|
10
|
+
.\" .hy enable hyphenation
|
11
|
+
.\" .ad l left justify
|
12
|
+
.\" .ad b justify to both left and right margins
|
13
|
+
.\" .nf disable filling
|
14
|
+
.\" .fi enable filling
|
15
|
+
.\" .br insert line break
|
16
|
+
.\" .sp <n> insert n+1 empty lines
|
17
|
+
.\" for manpage-specific macros, see man(7) and groff_man(7)
|
18
|
+
.\" .SH section heading
|
19
|
+
.\" .SS secondary section heading
|
20
|
+
.\"
|
21
|
+
.\"
|
22
|
+
.\" To preview this page as plain text: nroff -man ipython.1
|
23
|
+
.\"
|
24
|
+
.SH NAME
|
25
|
+
ipython \- Tools for Interactive Computing in Python.
|
26
|
+
.SH SYNOPSIS
|
27
|
+
.B ipython
|
28
|
+
.RI [ options ] " files" ...
|
29
|
+
|
30
|
+
.B ipython subcommand
|
31
|
+
.RI [ options ] ...
|
32
|
+
|
33
|
+
.SH DESCRIPTION
|
34
|
+
An interactive Python shell with automatic history (input and output), dynamic
|
35
|
+
object introspection, easier configuration, command completion, access to the
|
36
|
+
system shell, integration with numerical and scientific computing tools,
|
37
|
+
web notebook, Qt console, and more.
|
38
|
+
|
39
|
+
For more information on how to use IPython, see 'ipython \-\-help',
|
40
|
+
or 'ipython \-\-help\-all' for all available command\(hyline options.
|
41
|
+
|
42
|
+
.SH "ENVIRONMENT VARIABLES"
|
43
|
+
.sp
|
44
|
+
.PP
|
45
|
+
\fIIPYTHONDIR\fR
|
46
|
+
.RS 4
|
47
|
+
This is the location where IPython stores all its configuration files. The default
|
48
|
+
is $HOME/.ipython if IPYTHONDIR is not defined.
|
49
|
+
|
50
|
+
You can see the computed value of IPYTHONDIR with `ipython locate`.
|
51
|
+
|
52
|
+
.SH FILES
|
53
|
+
|
54
|
+
IPython uses various configuration files stored in profiles within IPYTHONDIR.
|
55
|
+
To generate the default configuration files and start configuring IPython,
|
56
|
+
do 'ipython profile create', and edit '*_config.py' files located in
|
57
|
+
IPYTHONDIR/profile_default.
|
58
|
+
|
59
|
+
.SH AUTHORS
|
60
|
+
IPython is written by the IPython Development Team <https://github.com/ipython/ipython>.
|
File without changes
|
@@ -1,6 +1,6 @@
|
|
1
1
|
[project]
|
2
2
|
name = "liminal-orm"
|
3
|
-
version = "4.3.
|
3
|
+
version = "4.3.2"
|
4
4
|
description = "An ORM and toolkit that builds on top of Benchling's platform to keep your schemas and downstream code dependencies in sync."
|
5
5
|
authors = [{ name = "DynoTx Open Source", email = "opensource@dynotx.com" }]
|
6
6
|
requires-python = ">=3.9,<4"
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{liminal_orm-4.3.0 → liminal_orm-4.3.2}/liminal/results_schemas/models/results_schema_model.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|