Skip to content

Commit 86d85e6

Browse files
committed
Merge remote-tracking branch 'upstream/maint/1.3.x'
2 parents 5ef237c + 08152b2 commit 86d85e6

File tree

4 files changed

+11
-10
lines changed

4 files changed

+11
-10
lines changed

.circleci/config.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -422,8 +422,8 @@ jobs:
422422
python -m venv /tmp/buildenv
423423
source /tmp/buildenv/bin/activate
424424
python -m pip install -U build twine setuptools_scm
425-
python -m build -s -w
426-
python -m twine check dist/*
425+
python3 -m build
426+
twine check dist/sdcflows*
427427
- store_artifacts:
428428
path: /tmp/src/sdcflows/dist
429429
- persist_to_workspace:

Dockerfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -262,6 +262,7 @@ ENV IS_DOCKER_8395080871=1
262262
RUN ldconfig
263263
WORKDIR /tmp/
264264

265+
ARG VERSION
265266
ARG BUILD_DATE
266267
ARG VCS_REF
267268
LABEL org.label-schema.build-date=$BUILD_DATE \

docs/api.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@ Information on specific functions, classes, and methods.
1212
api/sdcflows.transform
1313
api/sdcflows.utils
1414
api/sdcflows.viz
15-
api/sdcflows.workflows
15+
api/sdcflows.workflows

docs/conf.py

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -163,9 +163,9 @@
163163
latex_documents = [
164164
(
165165
master_doc,
166-
"smriprep.tex",
167-
"sMRIPrep Documentation",
168-
"The sMRIPrep Developers",
166+
"sdcflows.tex",
167+
"SDCFlows Documentation",
168+
"The SDCFlows Developers",
169169
"manual",
170170
),
171171
]
@@ -175,7 +175,7 @@
175175

176176
# One entry per manual page. List of tuples
177177
# (source start file, name, description, authors, manual section).
178-
man_pages = [(master_doc, "smriprep", "sMRIPrep Documentation", [author], 1)]
178+
man_pages = [(master_doc, "sdcflows", "SDCFlows Documentation", [author], 1)]
179179

180180

181181
# -- Options for Texinfo output ----------------------------------------------
@@ -186,10 +186,10 @@
186186
texinfo_documents = [
187187
(
188188
master_doc,
189-
"smriprep",
190-
"sMRIPrep Documentation",
189+
"sdcflows",
190+
"SDCFlows Documentation",
191191
author,
192-
"sMRIPrep",
192+
"SDCFlows",
193193
"One line description of project.",
194194
"Miscellaneous",
195195
),

0 commit comments

Comments
 (0)