Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

new IR with dependency resolving #33

Merged
merged 39 commits into from
Nov 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
39 commits
Select commit Hold shift + click to select a range
d4a5c7d
add: First version of new IR with dependency resolving
leclairm Nov 4, 2024
0949465
ref: move input_arg_options to task definition
leclairm Nov 4, 2024
6cdec0f
fix: missing part in __setitem__
leclairm Nov 4, 2024
fb97222
ref: some minor typing changes
leclairm Nov 4, 2024
536bf3d
ref(core): add method redundant with __setitem__
leclairm Nov 4, 2024
8131391
fix: adapt small test yaml file
leclairm Nov 4, 2024
d00c440
add: first version of workflow string representation
leclairm Nov 4, 2024
5b294e7
fix: allow referencing TimeSeries by absolute date
leclairm Nov 4, 2024
da81e2a
ref:add: generic TimeSeries type and refactor __str__ methods
leclairm Nov 4, 2024
f77d576
add: serialized data
leclairm Nov 4, 2024
0a3bb69
del: cleanup
leclairm Nov 4, 2024
3e54506
fix: hatch fmt
leclairm Nov 4, 2024
49394c8
fix: hatch fmt
leclairm Nov 4, 2024
3b348f6
fix: hatch fmt
leclairm Nov 4, 2024
1025f67
add: logging
leclairm Nov 5, 2024
07d45ef
fix: hatch fmt
leclairm Nov 5, 2024
458aaa5
ref: string handling
leclairm Nov 7, 2024
f8ba480
fix: check if TImeSeries initialized before testing dates
leclairm Nov 7, 2024
ced1dbd
fix: revert of test order again.
leclairm Nov 7, 2024
384a95b
ref: use dataclass for Task as well
leclairm Nov 7, 2024
444df90
hatch fmt
leclairm Nov 7, 2024
656c455
ref: move resolve_dates from parsing to core
leclairm Nov 7, 2024
8052088
fix: remove also from parsing ...
leclairm Nov 7, 2024
dc828f7
ref: move cycle date iterator from parsing to core
leclairm Nov 7, 2024
5006bc0
fix: hatch fmt
leclairm Nov 7, 2024
988c873
ref: put underscore back even if ruff complains
leclairm Nov 8, 2024
5f8a034
add: test for serialized workflow IR graph
leclairm Nov 8, 2024
126426c
ref: not only atmospheric science!
leclairm Nov 8, 2024
1e7dae7
add:test: test against serialized data
leclairm Nov 8, 2024
48c77f5
fix: Climate Science classifier does not exist
leclairm Nov 8, 2024
7c66992
ref: remove _ from DataBaseModel, used outside
leclairm Nov 8, 2024
efa4206
fix: hatch fmt
leclairm Nov 8, 2024
2f1c751
ref: _resolve_target_dates is a staticmethod
leclairm Nov 8, 2024
3f7f677
fix:test: invalid suffix
leclairm Nov 8, 2024
dd646b4
ref: move testing data to its own directory
leclairm Nov 8, 2024
fa4d287
fix: generate test data in the right directory
leclairm Nov 8, 2024
8299b68
fix: hatch fmt
leclairm Nov 8, 2024
f431665
fix: `get` name clashing with `dict` method + typo
leclairm Nov 11, 2024
c82f0b5
fix: hatch fmt
leclairm Nov 11, 2024
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
3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,8 @@ dependencies = [
"isoduration",
"pydantic",
"pydantic-yaml",
"aiida-core>=2.5"
"aiida-core>=2.5",
"termcolor"
]
[project.urls]
Repository = "https://github.com/C2SM/Sirocco.git"
Expand Down
Loading