validibot-shared 0.9.0__tar.gz → 0.9.1__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.
- {validibot_shared-0.9.0 → validibot_shared-0.9.1}/PKG-INFO +2 -2
- {validibot_shared-0.9.0 → validibot_shared-0.9.1}/pyproject.toml +2 -2
- {validibot_shared-0.9.0 → validibot_shared-0.9.1}/validibot_shared/shacl/envelopes.py +6 -1
- {validibot_shared-0.9.0 → validibot_shared-0.9.1}/.gitignore +0 -0
- {validibot_shared-0.9.0 → validibot_shared-0.9.1}/LICENSE +0 -0
- {validibot_shared-0.9.0 → validibot_shared-0.9.1}/NOTICE +0 -0
- {validibot_shared-0.9.0 → validibot_shared-0.9.1}/README.md +0 -0
- {validibot_shared-0.9.0 → validibot_shared-0.9.1}/tests/__init__.py +0 -0
- {validibot_shared-0.9.0 → validibot_shared-0.9.1}/tests/test_energyplus_envelopes.py +0 -0
- {validibot_shared-0.9.0 → validibot_shared-0.9.1}/tests/test_energyplus_models.py +0 -0
- {validibot_shared-0.9.0 → validibot_shared-0.9.1}/tests/test_evidence_manifest.py +0 -0
- {validibot_shared-0.9.0 → validibot_shared-0.9.1}/tests/test_fmu_envelopes.py +0 -0
- {validibot_shared-0.9.0 → validibot_shared-0.9.1}/tests/test_fmu_models.py +0 -0
- {validibot_shared-0.9.0 → validibot_shared-0.9.1}/tests/test_package_init.py +0 -0
- {validibot_shared-0.9.0 → validibot_shared-0.9.1}/tests/test_shacl_envelopes.py +0 -0
- {validibot_shared-0.9.0 → validibot_shared-0.9.1}/tests/test_validations_envelopes.py +0 -0
- {validibot_shared-0.9.0 → validibot_shared-0.9.1}/validibot_shared/__init__.py +0 -0
- {validibot_shared-0.9.0 → validibot_shared-0.9.1}/validibot_shared/energyplus/__init__.py +0 -0
- {validibot_shared-0.9.0 → validibot_shared-0.9.1}/validibot_shared/energyplus/envelopes.py +0 -0
- {validibot_shared-0.9.0 → validibot_shared-0.9.1}/validibot_shared/energyplus/models.py +0 -0
- {validibot_shared-0.9.0 → validibot_shared-0.9.1}/validibot_shared/evidence/__init__.py +0 -0
- {validibot_shared-0.9.0 → validibot_shared-0.9.1}/validibot_shared/evidence/manifest.py +0 -0
- {validibot_shared-0.9.0 → validibot_shared-0.9.1}/validibot_shared/fmu/__init__.py +0 -0
- {validibot_shared-0.9.0 → validibot_shared-0.9.1}/validibot_shared/fmu/envelopes.py +0 -0
- {validibot_shared-0.9.0 → validibot_shared-0.9.1}/validibot_shared/fmu/models.py +0 -0
- {validibot_shared-0.9.0 → validibot_shared-0.9.1}/validibot_shared/py.typed +0 -0
- {validibot_shared-0.9.0 → validibot_shared-0.9.1}/validibot_shared/shacl/__init__.py +0 -0
- {validibot_shared-0.9.0 → validibot_shared-0.9.1}/validibot_shared/validations/__init__.py +0 -0
- {validibot_shared-0.9.0 → validibot_shared-0.9.1}/validibot_shared/validations/envelopes.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: validibot-shared
|
|
3
|
-
Version: 0.9.
|
|
3
|
+
Version: 0.9.1
|
|
4
4
|
Summary: Shared library for data interchange between Validibot and validator containers
|
|
5
5
|
Project-URL: Homepage, https://validibot.com
|
|
6
6
|
Project-URL: Documentation, https://docs.validibot.com
|
|
@@ -27,7 +27,7 @@ Requires-Python: >=3.10
|
|
|
27
27
|
Requires-Dist: pydantic<3.0,>=2.13
|
|
28
28
|
Provides-Extra: dev
|
|
29
29
|
Requires-Dist: pytest==9.0.3; extra == 'dev'
|
|
30
|
-
Requires-Dist: ruff==0.15.
|
|
30
|
+
Requires-Dist: ruff==0.15.15; extra == 'dev'
|
|
31
31
|
Description-Content-Type: text/markdown
|
|
32
32
|
|
|
33
33
|
<div align="center">
|
|
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "validibot-shared"
|
|
7
|
-
version = "0.9.
|
|
7
|
+
version = "0.9.1"
|
|
8
8
|
description = "Shared library for data interchange between Validibot and validator containers"
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
license = { text = "MIT" }
|
|
@@ -37,7 +37,7 @@ classifiers = [
|
|
|
37
37
|
dependencies = ["pydantic>=2.13,<3.0"]
|
|
38
38
|
|
|
39
39
|
[project.optional-dependencies]
|
|
40
|
-
dev = ["pytest==9.0.3", "ruff==0.15.
|
|
40
|
+
dev = ["pytest==9.0.3", "ruff==0.15.15"]
|
|
41
41
|
|
|
42
42
|
[project.urls]
|
|
43
43
|
Homepage = "https://validibot.com"
|
|
@@ -154,7 +154,12 @@ class SHACLInputs(BaseModel):
|
|
|
154
154
|
max_shape_triples: int = Field(default=50_000, gt=0)
|
|
155
155
|
max_ontology_triples: int = Field(default=100_000, gt=0)
|
|
156
156
|
max_validation_depth: int = Field(default=25, gt=0)
|
|
157
|
-
|
|
157
|
+
# Mirror the producer-side defaults so a direct/shared-envelope consumer
|
|
158
|
+
# (or a test) that doesn't set these explicitly behaves like a real launch.
|
|
159
|
+
# Django (validations/.../shacl/launch.py) and the container backend
|
|
160
|
+
# (validibot-validator-backends shacl/engine.py) both default pySHACL to
|
|
161
|
+
# 300s (hard cap 1800s) and SPARQL-ASK to 10s; this contract must not lag.
|
|
162
|
+
pyshacl_timeout_seconds: int = Field(default=300, gt=0)
|
|
158
163
|
sparql_query_timeout_seconds: int = Field(default=10, gt=0)
|
|
159
164
|
|
|
160
165
|
model_config = {"extra": "forbid"}
|
|
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
|