Skip to content

Commit

Permalink
[FIX] Twine upload issue (#579)
Browse files Browse the repository at this point in the history
  • Loading branch information
mattcieslak authored May 31, 2023
1 parent 00e0bc0 commit 5b8c4f7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -428,7 +428,7 @@ jobs:
command: |
pip install --user twine
pip install --user --upgrade importlib-metadata
twine upload dist/qsiprep*gz wrapper/dist/qsiprep*
twine upload -u __token__ -p ${PYPI_PASS} dist/qsiprep*gz wrapper/dist/qsiprep*
workflows:
Expand Down
2 changes: 1 addition & 1 deletion wrapper/qsiprep_singularity.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@
MISSING = """
Image '{}' is missing
Would you like to download? [Y/n] """
PKG_PATH = '/usr/local/miniconda/lib/python3.7/site-packages'
PKG_PATH = '/usr/local/miniconda/lib/python3.8/site-packages'

# Monkey-patch Py2 subprocess
if not hasattr(subprocess, 'DEVNULL'):
Expand Down

0 comments on commit 5b8c4f7

Please sign in to comment.