From 5ca643adb5703011e9101ce030b95b7586a7202c Mon Sep 17 00:00:00 2001 From: Jim Pivarski Date: Sat, 17 Aug 2019 11:40:54 -0500 Subject: [PATCH] Call twine through Python (apparently necessary for MacOS now). --- .ci/azure-deploy-awkward.yml | 6 +++--- VERSION_INFO | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.ci/azure-deploy-awkward.yml b/.ci/azure-deploy-awkward.yml index e5de53aba7..7ff43aa703 100644 --- a/.ci/azure-deploy-awkward.yml +++ b/.ci/azure-deploy-awkward.yml @@ -59,7 +59,7 @@ jobs: displayName: "Build" - script: | - twine upload dist/* --config-file $(pypirc.secureFilePath) --verbose + python -m twine upload dist/* --config-file $(pypirc.secureFilePath) --verbose displayName: "Deploy" - job: Windows @@ -128,7 +128,7 @@ jobs: displayName: "Build" - script: | - twine upload dist/* --config-file $(pypirc.secureFilePath) --verbose + python -m twine upload dist/* --config-file $(pypirc.secureFilePath) --verbose displayName: "Deploy" - job: MacOS @@ -201,5 +201,5 @@ jobs: displayName: "Build" - script: | - twine upload dist/* --config-file $(pypirc.secureFilePath) --verbose + python -m twine upload dist/* --config-file $(pypirc.secureFilePath) --verbose displayName: "Deploy" diff --git a/VERSION_INFO b/VERSION_INFO index 43b2961830..9789c4ccb0 100644 --- a/VERSION_INFO +++ b/VERSION_INFO @@ -1 +1 @@ -0.0.13 +0.0.14