We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent de105d6 commit 97153ccCopy full SHA for 97153cc
1 file changed
.circleci/config.yml
@@ -37,7 +37,8 @@ jobs:
37
cd /tmp/src/templateflow
38
echo "${CIRCLE_TAG}" > templateflow/VERSION
39
echo "include templateflow/VERSION" >> MANIFEST.in
40
- twine check
+ python setup.py sdist
41
+ twine check dist/*
42
43
- save_cache:
44
key: deps-v1-{{ .Branch }}-{{ checksum "/tmp/src/templateflow/requirements.txt"}}
@@ -54,7 +55,7 @@ jobs:
54
55
56
- restore_cache:
57
-
58
+
59
- run:
60
name: Deploy to PyPi
61
command: |
@@ -63,8 +64,8 @@ jobs:
63
64
pip install "setuptools>=27.0" twine
65
66
67
python setup.py sdist
68
69
twine upload dist/*
70
71
workflows:
0 commit comments