Skip to content

Commit 9588b4d

Browse files
nipreps-botoesteban
authored andcommittedDec 19, 2024
enh: rename all instances of "eddymotion"
``` git ls-files -z | xargs -0 sed -i 's/eddymotion/nifreeze/g' git mv src/eddymotion src/nifreeze git mv docs/_static/eddymotion-flowchart.svg docs/_static/nifreeze-flowchart.svg ```
1 parent 3a6088e commit 9588b4d

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

51 files changed

+202
-202
lines changed
 

‎.dockerignore

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ build/**/*
88
build
99
dist/**/*
1010
dist
11-
src/eddymotion.egg-info/**/*
12-
src/eddymotion.egg-info
11+
src/nifreeze.egg-info/**/*
12+
src/nifreeze.egg-info
1313
.eggs/**/*
1414
.eggs
1515

‎.github/workflows/pythonpackage.yml

+6-6
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
pip install -U build hatch pip twine
4242
4343
python -m build -s -w
44-
python -m twine check dist/eddymotion-*
44+
python -m twine check dist/nifreeze-*
4545
4646
mv dist /tmp/package
4747
@@ -60,7 +60,7 @@ jobs:
6060
source /tmp/pip/bin/activate
6161
pip install -U pip
6262
python -m pip install .
63-
INSTALLED_VERSION=$(python -c 'import eddymotion as em; print(em.__version__, end="")')
63+
INSTALLED_VERSION=$(python -c 'import nifreeze as em; print(em.__version__, end="")')
6464
echo "VERSION: \"${THISVERSION}\""
6565
echo "INSTALLED: \"${INSTALLED_VERSION}\""
6666
test "${INSTALLED_VERSION}" = "${THISVERSION}"
@@ -70,8 +70,8 @@ jobs:
7070
python -m venv /tmp/install_sdist
7171
source /tmp/install_sdist/bin/activate
7272
pip install -U pip
73-
python -m pip install /tmp/package/eddymotion*.tar.gz
74-
INSTALLED_VERSION=$(python -c 'import eddymotion as em; print(em.__version__, end="")')
73+
python -m pip install /tmp/package/nifreeze*.tar.gz
74+
INSTALLED_VERSION=$(python -c 'import nifreeze as em; print(em.__version__, end="")')
7575
echo "VERSION: \"${THISVERSION}\""
7676
echo "INSTALLED: \"${INSTALLED_VERSION}\""
7777
test "${INSTALLED_VERSION}" = "${THISVERSION}"
@@ -81,7 +81,7 @@ jobs:
8181
python -m venv /tmp/install_wheel
8282
source /tmp/install_wheel/bin/activate
8383
pip install -U pip
84-
python -m pip install /tmp/package/eddymotion*.whl
85-
INSTALLED_VERSION=$(python -c 'import eddymotion as em; print(em.__version__, end="")')
84+
python -m pip install /tmp/package/nifreeze*.whl
85+
INSTALLED_VERSION=$(python -c 'import nifreeze as em; print(em.__version__, end="")')
8686
echo "INSTALLED: \"${INSTALLED_VERSION}\""
8787
test "${INSTALLED_VERSION}" = "${THISVERSION}"

0 commit comments

Comments
 (0)
Please sign in to comment.