Skip to content

Commit

Permalink
Add download-testpypi make target (#372)
Browse files Browse the repository at this point in the history
  • Loading branch information
tkf authored Apr 25, 2020
1 parent a544cd9 commit 31b849a
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,12 @@ upload: dist
# upload to Python package index`
twine upload dist/*

release:
download-testpypi: dist/.download-testpypi
dist/.download-testpypi:
rm -rf dist
pip download --dest dist --no-deps --index-url https://test.pypi.org/simple/ julia
pip download --dest dist --no-deps --index-url https://test.pypi.org/simple/ julia --no-binary :all:
touch $@

release: dist/.download-testpypi
twine upload dist/julia-*-any.whl dist/julia-*.tar.gz

0 comments on commit 31b849a

Please sign in to comment.