From d25b37398970713cdc94e60ae34c20a3e0531feb Mon Sep 17 00:00:00 2001 From: 36000 Date: Mon, 4 Nov 2024 15:41:44 -0800 Subject: [PATCH] update cloudknot examples --- examples/howto_examples/cloudknot_example.py | 4 ++-- examples/howto_examples/cloudknot_hcp_example.py | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/examples/howto_examples/cloudknot_example.py b/examples/howto_examples/cloudknot_example.py index df5af437..1f82a3f0 100644 --- a/examples/howto_examples/cloudknot_example.py +++ b/examples/howto_examples/cloudknot_example.py @@ -114,7 +114,7 @@ def afq_process_subject(subject): knot = ck.Knot( name='afq-process-subject-201009-0', func=afq_process_subject, - base_image='python:3.8', + base_image='python:3.11', image_github_installs="https://github.com/tractometry/pyAFQ.git", pars_policies=('AmazonS3FullAccess',), bid_percentage=100) @@ -158,7 +158,7 @@ def afq_combine_profiles(dummy_argument): knot2 = ck.Knot( name='afq_combine_subjects-201009-0', func=afq_combine_profiles, - base_image='python:3.8', + base_image='python:3.11', image_github_installs="https://github.com/tractometry/pyAFQ.git", pars_policies=('AmazonS3FullAccess',), bid_percentage=100) diff --git a/examples/howto_examples/cloudknot_hcp_example.py b/examples/howto_examples/cloudknot_hcp_example.py index 1db42e48..9f25b88c 100644 --- a/examples/howto_examples/cloudknot_hcp_example.py +++ b/examples/howto_examples/cloudknot_hcp_example.py @@ -152,7 +152,7 @@ def attach_keys(list_of_arg_lists): knot = ck.Knot( name='afq-hcp-tractography-201110-0', func=afq_process_subject, - base_image='python:3.8', + base_image='python:3.11', image_github_installs="https://github.com/tractometry/pyAFQ.git", pars_policies=('AmazonS3FullAccess',), bid_percentage=100) @@ -193,7 +193,7 @@ def afq_combine_profiles(seed_mask, n_seeds): knot2 = ck.Knot( name='afq_combine_subjects-201110-0', func=afq_combine_profiles, - base_image='python:3.8', + base_image='python:3.11', image_github_installs="https://github.com/tractometry/pyAFQ.git", pars_policies=('AmazonS3FullAccess',), bid_percentage=100)