Skip to content

Commit b1e9cad

Browse files
committed
maint: s/poldracklab/nipreps/g
1 parent 6d2974c commit b1e9cad

File tree

7 files changed

+29
-29
lines changed

7 files changed

+29
-29
lines changed

.circleci/config.yml

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ docs_deploy: &docs
66
- run:
77
name: Check whether this is the original repo
88
command: |
9-
if [[ "$CIRCLE_PROJECT_USERNAME" != "poldracklab" ]]; then
10-
echo "Not in poldracklab/sdcflows - skipping docs deploy."
9+
if [[ "$CIRCLE_PROJECT_USERNAME" != "nipreps" ]]; then
10+
echo "Not in nipreps/sdcflows - skipping docs deploy."
1111
circleci step halt
1212
fi
1313
- add_ssh_keys:
@@ -21,7 +21,7 @@ docs_deploy: &docs
2121
- run:
2222
name: Set git settings
2323
command: |
24-
git config user.email "crn.poldracklab@gmail.com"
24+
git config user.email "nipreps@gmail.com"
2525
git config user.name "Documentation Push"
2626
- attach_workspace:
2727
at: docs/_build
@@ -60,8 +60,8 @@ jobs:
6060
apt-key adv --recv-keys --keyserver hkp://pool.sks-keyservers.net:80 0xA5D32F012649A5A9
6161
apt update && apt-get install -y --no-install-recommends git-annex-standalone
6262
fi
63-
git config --global user.name 'CRN'
64-
git config --global user.email 'crn.poldracklab@gmail.com'
63+
git config --global user.name 'NiPreps Bot'
64+
git config --global user.email 'nipreps@gmail.com'
6565
6666
- run:
6767
name: Setup DataLad & TemplateFlow
@@ -171,14 +171,14 @@ jobs:
171171
echo "Pulling from local registry"
172172
docker tag localhost:5000/ubuntu ubuntu:xenial-20191010
173173
docker pull localhost:5000/sdcflows
174-
docker tag localhost:5000/sdcflows poldracklab/sdcflows:latest
175-
docker tag localhost:5000/sdcflows poldracklab/sdcflows
174+
docker tag localhost:5000/sdcflows nipreps/sdcflows:latest
175+
docker tag localhost:5000/sdcflows nipreps/sdcflows
176176
else
177177
echo "Pulling from Docker Hub"
178178
docker pull ubuntu:xenial-20191010
179179
docker tag ubuntu:xenial-20191010 localhost:5000/ubuntu
180180
docker push localhost:5000/ubuntu
181-
docker pull poldracklab/sdcflows:latest
181+
docker pull nipreps/sdcflows:latest
182182
fi
183183
- checkout:
184184
path: /tmp/src/sdcflows
@@ -201,8 +201,8 @@ jobs:
201201
# Build docker image
202202
e=1 && for i in {1..5}; do
203203
docker build --rm \
204-
--cache-from=poldracklab/sdcflows \
205-
-t poldracklab/sdcflows:latest \
204+
--cache-from=nipreps/sdcflows \
205+
-t nipreps/sdcflows:latest \
206206
--build-arg BUILD_DATE=`date -u +"%Y-%m-%dT%H:%M:%SZ"` \
207207
--build-arg VCS_REF=`git rev-parse --short HEAD` \
208208
--build-arg VERSION="${CIRCLE_TAG:-$THISVERSION}" . \
@@ -212,7 +212,7 @@ jobs:
212212
name: Docker push to local registry
213213
no_output_timeout: 40m
214214
command: |
215-
docker tag poldracklab/sdcflows:latest localhost:5000/sdcflows
215+
docker tag nipreps/sdcflows:latest localhost:5000/sdcflows
216216
docker push localhost:5000/sdcflows
217217
- run:
218218
name: Docker registry garbage collection
@@ -274,7 +274,7 @@ jobs:
274274
-v /tmp/work:/work -e TEST_WORK_DIR=/work \
275275
-v /tmp/templateflow:/home/sdcflows/.cache/templateflow \
276276
-v /tmp/data:/data:ro -v /tmp/src:/src -v /tmp/tests:/out \
277-
-w /work poldracklab/sdcflows:latest \
277+
-w /work nipreps/sdcflows:latest \
278278
pytest -v --junit-xml=/out/pytest.xml /src/sdcflows/sdcflows
279279
- save_cache:
280280
key: workdir-v2-{{ .Branch }}-{{ .BuildNum }}
@@ -361,16 +361,16 @@ jobs:
361361
name: Pull images from local registry
362362
command: |
363363
docker pull localhost:5000/sdcflows
364-
docker tag localhost:5000/sdcflows poldracklab/sdcflows:latest
364+
docker tag localhost:5000/sdcflows nipreps/sdcflows:latest
365365
- run:
366366
name: Deploy to Docker Hub
367367
no_output_timeout: 40m
368368
command: |
369369
if [[ -n "$DOCKER_PASS" ]]; then
370370
docker login -u $DOCKER_USER -p $DOCKER_PASS
371-
docker push poldracklab/sdcflows:latest
372-
docker tag poldracklab/sdcflows poldracklab/sdcflows:$CIRCLE_TAG
373-
docker push poldracklab/sdcflows:$CIRCLE_TAG
371+
docker push nipreps/sdcflows:latest
372+
docker tag nipreps/sdcflows nipreps/sdcflows:$CIRCLE_TAG
373+
docker push nipreps/sdcflows:$CIRCLE_TAG
374374
fi
375375
376376
test_package:

CHANGES.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,18 +24,18 @@ Bug-fix release.
2424
A hotfix release preventing downstream dependency collisions on fMRIPrep.
2525

2626
* PIN: niworkflows-1.0.3 `449c2c2
27-
<https://github.com/poldracklab/sdcflows/commit/449c2c2b0ab383544f5024de82ca8a80ee70894d>`__
27+
<https://github.com/nipreps/sdcflows/commit/449c2c2b0ab383544f5024de82ca8a80ee70894d>`__
2828

2929
1.0.2 (December 18, 2019)
3030
=========================
3131
A hotfix release.
3232

3333
* FIX: NiWorkflows' ``IntraModalMerge`` choked with images of shape (x, y, z, 1) (#79, `2e6faa0
34-
<https://github.com/poldracklab/sdcflows/commit/2e6faa05ed0f0ec0b4616f33db778a61a1df89d0>`__,
34+
<https://github.com/nipreps/sdcflows/commit/2e6faa05ed0f0ec0b4616f33db778a61a1df89d0>`__,
3535
`717a69e
36-
<https://github.com/poldracklab/sdcflows/commit/717a69ef680d556e4d5cde6876d0e60b023924e0>`__,
36+
<https://github.com/nipreps/sdcflows/commit/717a69ef680d556e4d5cde6876d0e60b023924e0>`__,
3737
and `361cd67
38-
<https://github.com/poldracklab/sdcflows/commit/361cd678215fca9434baa713fa43f77a2231e632>`__)
38+
<https://github.com/nipreps/sdcflows/commit/361cd678215fca9434baa713fa43f77a2231e632>`__)
3939

4040
1.0.1 (December 04, 2019)
4141
=========================

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,6 +140,6 @@ LABEL org.label-schema.build-date=$BUILD_DATE \
140140
org.label-schema.description="SDCflows - Susceptibility Distortion Correction (SDC) workflows for EPI MR schemes" \
141141
org.label-schema.url="http://sdcflows.readthedocs.io" \
142142
org.label-schema.vcs-ref=$VCS_REF \
143-
org.label-schema.vcs-url="https://github.com/poldracklab/sdcflows" \
143+
org.label-schema.vcs-url="https://github.com/nipreps/sdcflows" \
144144
org.label-schema.version=$VERSION \
145145
org.label-schema.schema-version="1.0"

README.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
SDCflows
22
--------
33

4-
.. image:: https://circleci.com/gh/poldracklab/sdcflows.svg?style=svg
5-
:target: https://circleci.com/gh/poldracklab/sdcflows
4+
.. image:: https://circleci.com/gh/nipreps/sdcflows.svg?style=svg
5+
:target: https://circleci.com/gh/nipreps/sdcflows
66

77
.. image:: https://img.shields.io/pypi/v/sdcflows.svg
88
:target: https://pypi.python.org/pypi/sdcflows/

docs/installation.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Make sure all of *SDCflows*' `External Dependencies`_ are installed.
88
These tools must be installed and their binaries available in the
99
system's ``$PATH``.
1010
A relatively interpretable description of how your environment can be set-up
11-
is found in the `Dockerfile <https://github.com/poldracklab/sdcflows/blob/master/Dockerfile>`_.
11+
is found in the `Dockerfile <https://github.com/nipreps/sdcflows/blob/master/Dockerfile>`_.
1212
As an additional installation setting, FreeSurfer_ requires a license file.
1313

1414
On a functional Python 3.5 (or above) environment with ``pip`` installed,

sdcflows/__about__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@
1111
__copyright__ = 'Copyright 2019, Center for Reproducible Neuroscience, Stanford University'
1212
__credits__ = ('Contributors: please check the ``.zenodo.json`` file at the top-level folder'
1313
'of the repository')
14-
__url__ = 'https://github.com/poldracklab/sdcflows'
14+
__url__ = 'https://github.com/nipreps/sdcflows'
1515

1616
DOWNLOAD_URL = (
17-
'https://github.com/poldracklab/{name}/archive/{ver}.tar.gz'.format(
17+
'https://github.com/nipreps/{name}/archive/{ver}.tar.gz'.format(
1818
name=__packagename__, ver=__version__))

setup.cfg

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
[metadata]
2-
url = https://github.com/poldracklab/sdcflows
2+
url = https://github.com/nipreps/sdcflows
33
author = The SDCflows developers
4-
author_email = [email protected]
4+
author_email = [email protected]
55
maintainer = Oscar Esteban
6-
maintainer_email = [email protected]
6+
maintainer_email = [email protected]
77
description = Susceptibility Distortion Correction (SDC) workflows for EPI MR schemes.
88
long_description = file:README.rst
99
long_description_content_type = text/x-rst; charset=UTF-8

0 commit comments

Comments
 (0)