From b5a3285e64f356b543275439cbbf6cc8620ea8a1 Mon Sep 17 00:00:00 2001 From: Jamie Hardt Date: Sat, 29 Dec 2018 16:31:48 -0800 Subject: [PATCH] Nudge version Also saved upload command to a script --- pycmx/__init__.py | 2 +- pypi_upload.sh | 2 ++ setup.py | 2 +- 3 files changed, 4 insertions(+), 2 deletions(-) create mode 100755 pypi_upload.sh diff --git a/pycmx/__init__.py b/pycmx/__init__.py index eff4800..8a43bb4 100644 --- a/pycmx/__init__.py +++ b/pycmx/__init__.py @@ -8,7 +8,7 @@ copy and reuse this software, refer to the LICENSE file included with the distribution. """ -__version__ = '0.8' +__version__ = '0.9' __author__ = 'Jamie Hardt' from .parse_cmx_events import parse_cmx3600 diff --git a/pypi_upload.sh b/pypi_upload.sh new file mode 100755 index 0000000..21ed0a3 --- /dev/null +++ b/pypi_upload.sh @@ -0,0 +1,2 @@ +#!/bin/bash +python3 -m twine upload --repository-url https://upload.pypi.org/legacy/ dist/* diff --git a/setup.py b/setup.py index 8449519..e1bf24b 100644 --- a/setup.py +++ b/setup.py @@ -4,7 +4,7 @@ with open("README.md", "r") as fh: long_description = fh.read() setup(name='pycmx', - version='0.8', + version='0.9', author='Jamie Hardt', author_email='jamiehardt@me.com', description='CMX 3600 Edit Decision List Parser',