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: 7 additions & 1 deletion config/workflow_config.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,13 @@
},
{
"parameter_type": "datetime",
"key_name": "start_time"
"key_name": "start_time",
"constraints": [
{
"other_key_name": "end_time",
"relation": "smaller"
}
]
},
{
"parameter_type": "datetime",
Expand Down
21 changes: 18 additions & 3 deletions dev-requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# This file is autogenerated by pip-compile with Python 3.11
# This file is autogenerated by pip-compile with Python 3.10
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

In the Dockerfile we use 3.11, should this also be used to compile the requirements?

# by the following command:
#
# pip-compile --constraint=requirements.txt --extra=dev --output-file=dev-requirements.txt pyproject.toml
Expand Down Expand Up @@ -69,6 +69,8 @@ dataclass-binder==0.3.4
# via
# -c requirements.txt
# orchestrator (pyproject.toml)
exceptiongroup==1.2.2
# via pytest
flake8==7.1.1
# via
# flake8-bugbear
Expand Down Expand Up @@ -144,11 +146,11 @@ mypy-extensions==1.0.0
# via
# black
# mypy
omotes-sdk-protocol==1.1.0
omotes-sdk-protocol==1.2.0
# via
# -c requirements.txt
# omotes-sdk-python
omotes-sdk-python==4.1.0
omotes-sdk-python==4.2.0
# via
# -c requirements.txt
# orchestrator (pyproject.toml)
Expand Down Expand Up @@ -251,12 +253,25 @@ streamcapture==1.2.5
# via
# -c requirements.txt
# omotes-sdk-python
tomli==2.2.1
# via
# -c requirements.txt
# black
# build
# coverage
# dataclass-binder
# flake8-pyproject
# mypy
# pytest
# setuptools-git-versioning
types-protobuf==4.24.0.20240408
# via orchestrator (pyproject.toml)
typing-extensions==4.13.2
# via
# -c requirements.txt
# alembic
# black
# multidict
# mypy
# omotes-sdk-python
# sqlalchemy
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ dependencies = [
"sqlalchemy ~= 2.0.27",
"psycopg2-binary ~= 2.9.9",
"celery ~= 5.3.6",
"omotes-sdk-python ~= 4.1.0",
"omotes-sdk-python ~= 4.2.0",
"alembic ~= 1.13.1",
"influxdb ~= 5.3.2",
]
Expand Down
9 changes: 6 additions & 3 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# This file is autogenerated by pip-compile with Python 3.11
# This file is autogenerated by pip-compile with Python 3.10
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

use python 3.11?

# by the following command:
#
# pip-compile --output-file=requirements.txt pyproject.toml
Expand Down Expand Up @@ -58,9 +58,9 @@ msgpack==1.1.0
# via influxdb
multidict==6.4.3
# via yarl
omotes-sdk-protocol==1.1.0
omotes-sdk-protocol==1.2.0
# via omotes-sdk-python
omotes-sdk-python==4.1.0
omotes-sdk-python==4.2.0
# via orchestrator (pyproject.toml)
ordered-set==4.1.0
# via pyecore
Expand Down Expand Up @@ -102,9 +102,12 @@ sqlalchemy==2.0.40
# orchestrator (pyproject.toml)
streamcapture==1.2.5
# via omotes-sdk-python
tomli==2.2.1
# via dataclass-binder
typing-extensions==4.13.2
# via
# alembic
# multidict
# omotes-sdk-python
# sqlalchemy
tzdata==2025.2
Expand Down
Loading