Skip to content

Switch Capsul 2 to populse_db 3 #364

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

Open
wants to merge 23 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
322e364
object inheritance is obsoloet
sapetnioc Nov 18, 2024
db16f27
Start adapting capsul 2 to populse_db 3
sapetnioc Nov 18, 2024
7eac678
Go on with adaptation to populse-db 3
sapetnioc Nov 19, 2024
4c656a4
use 'str' type insteed 'string' in populse_db 3
servoz Nov 27, 2024
9aa72d7
typo
servoz Nov 28, 2024
d546aa3
Improve compatibility with populse_db 3
sapetnioc Nov 27, 2024
d83f1cc
More fix for populse_db 3
sapetnioc Nov 28, 2024
640f03b
Be more robust to non existant fom
sapetnioc Nov 28, 2024
f70e7f1
Do not affect non iterative values to iterative parameters
sapetnioc Nov 28, 2024
b87435d
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] Nov 28, 2024
fbc7070
typo
servoz Nov 29, 2024
ccb72a1
import config values from a dict only if value != {}
servoz Dec 2, 2024
8b57118
Merge pull request #365 from populse/populsedb3_as_list
sapetnioc Dec 4, 2024
3f9fd65
capsul adaptation for populse_db
servoz Dec 6, 2024
99464d0
Changes requested in PR: https://github.com/populse/capsul/pull/366
servoz Dec 9, 2024
3fe4271
final change for PR: https://github.com/populse/capsul/pull/366
servoz Dec 9, 2024
25ebf07
Merge pull request #366 from populse/populsedb3_pr
servoz Dec 9, 2024
bdf0054
manages the case where access to a data session is invalid, in Settin…
servoz Dec 20, 2024
2487a52
Merge branch 'master' into populsedb3
servoz Feb 3, 2025
953de00
fix typos that make Codespell errors
servoz Feb 3, 2025
e09efeb
Merge branch 'master' into populsedb3
servoz Feb 17, 2025
9a83c61
Merge branch 'master' into populsedb3
servoz Apr 9, 2025
922f545
Merge branch 'master' into populsedb3
servoz Apr 11, 2025
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
2 changes: 2 additions & 0 deletions capsul/attributes/completion_engine_iteration.py
Original file line number Diff line number Diff line change
Expand Up @@ -254,6 +254,8 @@ def complete_parameters(self, process_inputs={},
print('assign iteration parameter', parameter, ':\n', e,
file=sys.stderr)
for parameter in parameters:
if parameter in iterative_parameters:
continue
try:
value = getattr(process.process, parameter)
setattr(process, parameter, value)
Expand Down
Loading
Loading