Skip to content

Commit

Permalink
Merge pull request #9 from arokem/upgrade_python
Browse files Browse the repository at this point in the history
Upgrade python
  • Loading branch information
arokem authored Nov 5, 2024
2 parents f5528af + 596c20e commit bc70f39
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion docs/source/howto/installation_guide.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
How to install ``pyAFQ``
==========================

The ``pyAFQ`` software works (at least) on Python 3.9 and 3.8.
The ``pyAFQ`` software works (at least) on Python 3.9.

How to install the release version
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Expand Down
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
4 changes: 2 additions & 2 deletions pyafq_docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
###############################################################################
# Dockerfile to build pyAFQ
# Dockerfile to build pyAFQ
###############################################################################

# 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

0 comments on commit bc70f39

Please sign in to comment.