Skip to content

Commit

Permalink
fix twine check commands
Browse files Browse the repository at this point in the history
  • Loading branch information
oesteban committed Jan 16, 2019
1 parent de105d6 commit 97153cc
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,8 @@ jobs:
cd /tmp/src/templateflow
echo "${CIRCLE_TAG}" > templateflow/VERSION
echo "include templateflow/VERSION" >> MANIFEST.in
twine check
python setup.py sdist
twine check dist/*
- save_cache:
key: deps-v1-{{ .Branch }}-{{ checksum "/tmp/src/templateflow/requirements.txt"}}
Expand All @@ -54,7 +55,7 @@ jobs:

- restore_cache:
key: deps-v1-{{ .Branch }}-{{ checksum "/tmp/src/templateflow/requirements.txt"}}

- run:
name: Deploy to PyPi
command: |
Expand All @@ -63,8 +64,8 @@ jobs:
pip install "setuptools>=27.0" twine
echo "${CIRCLE_TAG}" > templateflow/VERSION
echo "include templateflow/VERSION" >> MANIFEST.in
twine check
python setup.py sdist
twine check dist/*
twine upload dist/*
workflows:
Expand Down

0 comments on commit 97153cc

Please sign in to comment.