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

Update minimal Python version #8

Closed
wants to merge 3 commits into from
Closed
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
4 changes: 2 additions & 2 deletions examples/howto_examples/cloudknot_example.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down Expand Up @@ -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)
Expand Down
4 changes: 2 additions & 2 deletions examples/howto_examples/cloudknot_hcp_example.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion pyafq_docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
###############################################################################

# Use python base image
FROM python:3.8
FROM python:3.11

ARG COMMIT

Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ platforms = OS Independent
[options]
setup_requires =
setuptools_scm
python_requires = >=3.8
python_requires = >=3.9
install_requires =
# core packages
scikit_image>=0.14.2
Expand Down
Loading