Skip to content
Merged
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 .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ jobs:

test_package:
docker:
- image: cimg/python:3.9
- image: cimg/python:3.10
auth:
username: $DOCKER_USER
password: $DOCKER_PAT
Expand Down Expand Up @@ -217,7 +217,7 @@ jobs:

deploy_pypi:
docker:
- image: cimg/python:3.9
- image: cimg/python:3.10
auth:
username: $DOCKER_USER
password: $DOCKER_PAT
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/tox.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,17 +66,17 @@ jobs:
needs: [cache-test-data]
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
python-version: ["3.10", "3.11", "3.12", "3.13"]
dependencies: [latest, pre]
include:
- python-version: "3.9"
- python-version: "3.10"
dependencies: min
exclude:
# Do not test pre-releases for versions out of SPEC0
- python-version: "3.9"
dependencies: pre
- python-version: "3.10"
dependencies: pre
- python-version: "3.11"
dependencies: pre

env:
DEPENDS: ${{ matrix.dependencies }}
Expand Down
13 changes: 6 additions & 7 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,20 +11,19 @@ classifiers = [
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Image Recognition",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
description = "NiTransforms -- Neuroimaging spatial transforms in Python."
license = {text = "MIT License"}
requires-python = ">= 3.9"
requires-python = ">= 3.10"
dependencies = [
"numpy >= 1.21",
"numpy >= 2.1",
"scipy >= 1.8",
"nibabel >= 4.0",
"h5py >= 3.9",
"nibabel >= 5.2",
"h5py >= 3.11",
]
dynamic = ["version"]

Expand All @@ -34,9 +33,9 @@ Manuscript = "https://doi.org/10.31219/osf.io/8aq7b"
NiBabel = "https://github.com/nipy/nibabel/pull/656"

[project.optional-dependencies]
niftiext = ["lxml >= 4.6"]
niftiext = ["lxml >= 4.6.4"]
test = [
"pytest >= 6",
"pytest >= 6.2.5",
"pytest-cov >= 2.11",
"pytest-env",
"pytest-xdist >= 2.5",
Expand Down
5 changes: 2 additions & 3 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,14 @@
requires =
tox>=4
envlist =
py3{9,10,11,12,13}-latest
py39-min
py3{10,11,12,13}-latest
py310-min
py3{11,12,13}-pre
skip_missing_interpreters = true

# Configuration that allows us to split tests across GitHub runners effectively
[gh-actions]
python =
3.9: py39
3.10: py310
3.11: py311
3.12: py312
Expand Down
Loading