Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
costrouc committed Mar 28, 2018
1 parent 0fc11d6 commit cb18f9b
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,15 @@ test:
- echo "============================================"

deploy:
image: python:3.7.0b2
image: python:3.6
stage: deploy
script:
- pip install -U twine setuptools
- pip list
- python setup.py sdist bdist_wheel
- echo "======== Deploying Package to PyPi ========="
- twine upload dist/*
- twine upload dist/*.tar.gz
- twine upload dist/*.whl
- echo "============================================"
only:
- /^v\d+\.\d+\.\d+([abc]\d*)?$/ # PEP-440 compliant version (tags)

0 comments on commit cb18f9b

Please sign in to comment.