From f989e8eeef121a9775bb839df2bfe729ee5baa73 Mon Sep 17 00:00:00 2001 From: Goncalo Date: Sun, 27 Jan 2019 09:38:43 -0200 Subject: [PATCH] Fix travis --- setup.py | 2 +- travis/build-wheels.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 793a31dd..a8b48100 100644 --- a/setup.py +++ b/setup.py @@ -190,7 +190,7 @@ def main(): print("https://pypi.python.org/pypi/pyopencl") sys.exit(1) - setup(name="pyopencl-gmagno", + setup(name="pyopencl-gm", # metadata version=ver_dic["VERSION_TEXT"], description="Python wrapper for OpenCL", diff --git a/travis/build-wheels.sh b/travis/build-wheels.sh index af7e9394..a97b0b03 100755 --- a/travis/build-wheels.sh +++ b/travis/build-wheels.sh @@ -26,7 +26,7 @@ done /opt/python/cp37-cp37m/bin/pip install twine -for WHEEL in /io/wheelhouse/pyopencl-gmagno*.whl; do +for WHEEL in /io/wheelhouse/pyopencl-gm*.whl; do # /opt/python/cp37-cp37m/bin/twine upload --repository-url https://test.pypi.org/legacy/ "${WHEEL}" /opt/python/cp37-cp37m/bin/twine upload -u "${TWINE_USERNAME}" -p "${TWINE_PASSWORD}" "${WHEEL}" done -- GitLab