From f882ce58286228f3f5ac39d3163a009ee9105ef8 Mon Sep 17 00:00:00 2001 From: Matt Cieslak Date: Wed, 10 Jan 2024 17:04:54 -0500 Subject: [PATCH] [ENH] update to new python (#670) --- .circleci/config.yml | 2 +- Dockerfile | 2 +- pyproject.toml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 93e8cf9c..df6f3e17 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -2,7 +2,7 @@ version: 2.1 .dockersetup: &dockersetup docker: - - image: pennbbl/qsiprep_build:23.7.2 + - image: pennbbl/qsiprep_build:24.1.0 working_directory: /src/qsiprep runinstall: &runinstall diff --git a/Dockerfile b/Dockerfile index e052a7c5..db705b0a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -7,7 +7,7 @@ RUN apt-get update && \ COPY . /src/qsiprep RUN python -m build /src/qsiprep -FROM pennbbl/qsiprep_build:23.7.2 +FROM pennbbl/qsiprep_build:24.1.0 # Install qsiprep wheel COPY --from=wheelstage /src/qsiprep/dist/*.whl . diff --git a/pyproject.toml b/pyproject.toml index 6ca67c7c..71a1e4c4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -12,7 +12,7 @@ classifiers = [ "Intended Audience :: Science/Research", "Topic :: Scientific/Engineering :: Image Recognition", "License :: OSI Approved :: BSD License", - "Programming Language :: Python :: 3.8", + "Programming Language :: Python :: 3.10", ] license = {file = "LICENSE"} requires-python = ">=3.5"