From 5ff7ff6b2d4f8e742446a667f4bf04a277c00df1 Mon Sep 17 00:00:00 2001 From: Armin Friedl Date: Sun, 11 Oct 2020 21:56:21 +0200 Subject: [PATCH] Version 0.0.5 --- .drone.yml | 15 +++++++++++++++ setup.py | 2 +- 2 files changed, 16 insertions(+), 1 deletion(-) diff --git a/.drone.yml b/.drone.yml index 3d60e24..7dcd9bf 100644 --- a/.drone.yml +++ b/.drone.yml @@ -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 diff --git a/setup.py b/setup.py index 8276867..17ee7a1 100644 --- a/setup.py +++ b/setup.py @@ -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",