Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ pydantic = ">=2.8,<2.12"
# -- Local dev (editable install, schema changes take effect immediately):
# flow360-schema = { path = "../../../../flex/share/flow360-schema", develop = true }
# -- CI / release (install from CodeArtifact, swap comments before pushing):
flow360-schema = { version = "~0.1.24", source = "codeartifact" }
flow360-schema = { version = "= 25.10.1b1", source = "codeartifact" }
Comment thread
benflexcompute marked this conversation as resolved.
pytest = "^7.1.2"
click = "^8.1.3"
toml = "^0.10.2"
Expand Down
3 changes: 2 additions & 1 deletion tests/simulation/service/test_services_v2.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
from typing import get_args

import pytest
from flow360_schema import __version__ as _SCHEMA_VERSION
from flow360_schema.framework.expression import UserVariable
from unyt import Unit

Expand Down Expand Up @@ -1712,7 +1713,7 @@ def test_validate_error_location_with_selector():
}
],
"unit_system": {"name": "SI"},
"version": __version__,
"version": _SCHEMA_VERSION,
"private_attribute_asset_cache": {
"project_entity_info": {
"type_name": "VolumeMeshEntityInfo",
Expand Down
Loading