Version 0.0.5
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/tag Build is passing
continuous-integration/drone Build is passing

This commit is contained in:
Armin Friedl 2020-10-11 21:56:21 +02:00
parent d8d8436325
commit 5ff7ff6b2d
2 changed files with 16 additions and 1 deletions

View file

@ -24,3 +24,18 @@ steps:
when:
event:
- tag
- name: promote
image: python:3
environment:
TWINE_USERNAME: __token__
TWINE_PASSWORD:
from_secret: pypi_token
commands:
- pip install twine setuptools wheel
- python setup.py sdist bdist_wheel
- twine check dist/*
- twine upload dist/*
when:
target:
- production

View file

@ -6,7 +6,7 @@ with open("README.md", "r") as fh:
setuptools.setup(
name="bytetrie",
version="0.0.4",
version="0.0.5",
url="https://git.friedl.net/incubator/bytetrie",
license="MIT",
author="Armin Friedl",