Skip to content

Commit

Permalink
Fix deploying precompiled wheels to pypi
Browse files Browse the repository at this point in the history
  • Loading branch information
mark9064 committed Dec 23, 2019
1 parent 47563be commit eb46cf8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ matrix:
dist: xenial
before_install:
- sudo apt-get install -y python3 python3-dev python3-pip
- sudo python3 -m pip install --upgrade pip
- sudo python3 -m pip install twine
sudo: required
services:
Expand All @@ -20,8 +21,9 @@ matrix:
- docker run --rm -e PLAT=$PLAT -v `pwd`:/io $DOCKER_IMAGE $PRE_CMD /io/ci/travis_build_wheels.sh
- ls dist/
deploy:
skip_cleanup: true
provider: script
script: python3 -m twine upload dist/*
script: sudo python3 -m twine upload dist/*
on:
tags: true
- name: Python 3.8 sdist
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

setuptools.setup(
name="pyamdgpuinfo",
version="1.0.3",
version="1.0.4",
author="mark9064",
description="AMD GPU stats",
long_description=LONG_DESCRIPTION,
Expand Down

0 comments on commit eb46cf8

Please sign in to comment.