8000 Bug fix of doctest generation by tclose · Pull Request #17 · nipype/nipype2pydra · GitHub
[go: up one dir, main page]

Skip to content

Bug fix of doctest generation #17

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 8 commits into from
Mar 26, 2024
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
updated action versions
  • Loading branch information
tclose committed Mar 26, 2024
commit 01f4e88f46121182fd2a318ac48e3ba7b301bff1
10 changes: 5 additions & 5 deletions nipype2pydra/pkg_gen/resources/templates/gh_workflows/ci-cd.yaml
ECBC
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
- name: Run automatic Nipype > Pydra conversion
run: ./nipype-auto-conv/generate

- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: converted-nipype
path: pydra/tasks/CHANGEME/auto
Expand All @@ -69,7 +69,7 @@ jobs:
run: git checkout $(git tag -l | grep 'v.*' | tail -n 1 | awk -F post '{print $1}')

- name: Download tasks converted from Nipype
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: converted-nipype
path: pydra/tasks/CHANGEME/auto
Expand Down Expand Up @@ -140,7 +140,7 @@ jobs:
echo "PATH=${{ env.CHANGEME_install_dir }}/bin:$PATH" >> $GITHUB_ENV

- name: Download tasks converted from Nipype
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: converted-nipype
path: pydra/tasks/CHANGEME/auto
Expand Down Expand Up @@ -291,7 +291,7 @@ jobs:
run: git checkout ${{ steps.latest_tag.outputs.TAG }}

- name: Download tasks converted from Nipype
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: converted-nipype
path: pydra/tasks/CHANGEME/auto
Expand Down Expand Up @@ -345,7 +345,7 @@ jobs:
- name: Check distributions
run: twine check dist/*

- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: distributions
path: dist/
Expand Down
0