summaryrefslogtreecommitdiff
path: root/utils/makefile.python
diff options
context:
space:
mode:
authorNoémi Ványi <kvch@users.noreply.github.com>2021-01-10 20:10:05 +0100
committerGitHub <noreply@github.com>2021-01-10 20:10:05 +0100
commitdbfd5567aaa06a5f9792bb0839af74877ed5258c (patch)
tree4b99fef32c859b8a7262cac5c938dabf906e6f3f /utils/makefile.python
parentc2646df496565bbf66ecfa6baf9cedee1de416cf (diff)
parentb5ce8dfe34aa4538f5473cdbf55a23dc7c59fc30 (diff)
Merge pull request #2456 from return42/pypi-test
upload-pypi-test & linuxdoc has been released on PyPi
Diffstat (limited to 'utils/makefile.python')
-rw-r--r--utils/makefile.python4
1 files changed, 3 insertions, 1 deletions
diff --git a/utils/makefile.python b/utils/makefile.python
index 5d0837e00..345434384 100644
--- a/utils/makefile.python
+++ b/utils/makefile.python
@@ -243,8 +243,10 @@ pyenv-python: pyenvinstall
# [2] https://github.com/pypa/pip/pull/1519
# https://github.com/pypa/twine
-PHONY += upload-pypi
+PHONY += upload-pypi upload-pypi-test
upload-pypi: pyclean pyenvinstall pybuild
@$(PY_ENV_BIN)/twine upload $(PYDIST)/*
+upload-pypi-test: pyclean pyenvinstall pybuild
+ @$(PY_ENV_BIN)/twine upload -r testpypi $(PYDIST)/*
.PHONY: $(PHONY)