Skip to content

Commit

Permalink
trying to get this to deploy 0.9.9
Browse files Browse the repository at this point in the history
  • Loading branch information
claytantor committed Jan 9, 2020
1 parent 710fcd0 commit 75f1b75
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 12 deletions.
6 changes: 3 additions & 3 deletions .circleci/config.yml
Expand Up @@ -110,8 +110,8 @@ jobs:
name: init .pypirc
command: |
echo -e "[pypi]" >> ~/.pypirc
echo -e "username = levlaz" >> ~/.pypirc
echo -e "password = $PYPI_PASSWORD" >> ~/.pypirc
echo -e "username = $TWINE_USER" >> ~/.pypirc
echo -e "password = $TWINE_PASSWORD" >> ~/.pypirc
- run:
name: create packages
command: |
Expand All @@ -120,4 +120,4 @@ jobs:
name: upload to pypi
command: |
. venv/bin/activate
twine upload -u $TWINE_USERNAME -p $TWINE_PASSWORD dist/*
twine upload dist/*
6 changes: 0 additions & 6 deletions .pypirc

This file was deleted.

6 changes: 3 additions & 3 deletions setup.py
Expand Up @@ -17,15 +17,15 @@ class VerifyVersionCommand(install):
def run(self):
tag = os.getenv('CIRCLE_TAG')

if tag != '0.9.8':
if tag != '0.9.9':
info = "Git tag: {0} does not match the version of this app: {1}".format(
tag, '0.9.8'
tag, '0.9.9'
)
sys.exit(info)

setuptools.setup(
name="flashlexiot",
version="0.9.8",
version="0.9.9",
author="Clay Graham",
author_email="claytantor@flashlex.com",
description="Flashlex IOT for python makes it easy to make any python computer an IOT device.",
Expand Down

0 comments on commit 75f1b75

Please sign in to comment.