Skip to content

Commit

Permalink
updated plugin repo url
Browse files Browse the repository at this point in the history
  • Loading branch information
Sandip117 committed Oct 1, 2024
1 parent afe7697 commit 11f7ca8
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 3 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -173,6 +173,17 @@ jobs:
jq < /tmp/description.json # pretty print in log
echo "title=$(jq -r '.title' < /tmp/description.json)" >> $GITHUB_OUTPUT
- name: Upload ChRIS Plugin
id: upload
if: github.ref_type == 'tag'
uses: FNNDSC/upload-chris-plugin@v1
with:
dock_image: ${{ steps.info.outputs.local_tag }}
username: ${{ secrets.CHRISPROJECT_USERNAME }}
password: ${{ secrets.CHRISPROJECT_PASSWORD }}
chris_url: https://cube.chrisproject.org/api/v1/
compute_names: NERC

- name: Update DockerHub description
uses: peter-evans/dockerhub-description@v3
continue-on-error: true # it is not crucial that this works
Expand Down
2 changes: 1 addition & 1 deletion dicom_repack.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
import pydicom as dicom
import os
from pflog import pflog
__version__ = '1.2.2'
__version__ = '1.2.3'

DISPLAY_TITLE = r"""
_ _ _ _
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
chris_plugin==0.2.1
chris_plugin>=0.3.0
numpy
pydicom==2.1.2
pflog==1.2.26
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ def get_version(rel_path: str) -> str:
description='A ChRIS plugin to merge individual dicom slices into a single multiframe DICOM',
author='FNNDSC',
author_email='[email protected]',
url='https://github.com/FNNDSC/pl-dicom_re',
url='https://github.com/FNNDSC/pl-dicom_repack',
py_modules=['dicom_repack'],
install_requires=['chris_plugin'],
license='MIT',
Expand Down

0 comments on commit 11f7ca8

Please sign in to comment.