Skip to content

Commit 93aaa42

Browse files
authored
Merge branch 'main' into switch-pkg_resources-to-importlib.resources
2 parents c762861 + 8ea6a72 commit 93aaa42

File tree

12 files changed

+12
-30
lines changed

12 files changed

+12
-30
lines changed

.circleci/config.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
parameters:
88
python_version:
99
type: string
10-
default: "3.8"
10+
default: "3.12"
1111
machine:
1212
image: ubuntu-2404:2024.08.1
1313
working_directory: /home/circleci/src/CuBIDS
@@ -105,10 +105,11 @@ workflows:
105105
matrix:
106106
parameters:
107107
python_version:
108-
- "3.8"
109108
- "3.9"
110109
- "3.10"
111110
- "3.11"
111+
- "3.12"
112+
- "3.13"
112113
filters:
113114
tags:
114115
only: /.*/

.readthedocs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ version: 2
33
build:
44
os: ubuntu-22.04
55
tools:
6-
python: "3.8"
6+
python: "3.12"
77

88
sphinx:
99
configuration: docs/conf.py

CONTRIBUTING.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ Before you submit a pull request, check that it meets these guidelines:
103103
2. If the pull request adds functionality, the docs should be updated. Put
104104
your new functionality into a function with a docstring, and add the
105105
feature to the list in README.rst.
106-
3. The pull request should work for Python 3.5, 3.6, 3.7 and 3.8, and for PyPy.
106+
3. The pull request should work for Python 3.9, 3.10, 3.11, 3.12 and 3.13, and for PyPI.
107107
Check https://circleci.com/gh/PennLINC/CuBIDS
108108
and make sure that the tests pass for all supported Python versions.
109109

cubids/cli.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ def _parse_validate():
7474
default=None,
7575
)
7676
parser.add_argument(
77-
"--ignore_nifti_headers",
77+
"--ignore-nifti-headers",
7878
action="store_true",
7979
default=False,
8080
help="Disregard NIfTI header content during validation",

cubids/workflows.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -231,7 +231,7 @@ def validate(
231231
linked_output_prefix_t,
232232
]
233233
if ignore_nifti_headers:
234-
cmd.append("--ignore_nifti_headers")
234+
cmd.append("--ignore-nifti-headers")
235235

236236
elif container_type == "singularity":
237237
cmd = [
@@ -250,7 +250,7 @@ def validate(
250250
linked_output_prefix_t,
251251
]
252252
if ignore_nifti_headers:
253-
cmd.append("--ignore_nifti_headers")
253+
cmd.append("--ignore-nifti-headers")
254254

255255
if sequential:
256256
cmd.append("--sequential")

docs/api.rst

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
.. include:: links.rst
2-
31
===
42
API
53
===

docs/example.rst

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
.. include:: links.rst
2-
31
===================
42
Example Walkthrough
53
===================

docs/examples.rst

Lines changed: 0 additions & 14 deletions
This file was deleted.

docs/glossary.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.. include:: links.rst
1+
.. _BIDS filename key-value pairs: https://bids-specification.readthedocs.io/en/stable/02-common-principles.html#file-name-key-value-pairs
22

33
Glossary
44
========

docs/index.rst

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ Contents
1313
usage
1414
cli
1515
example
16-
examples
1716
../CONTRIBUTING
1817
../AUTHORS
1918
../HISTORY

0 commit comments

Comments
 (0)