Skip to content

Commit

Permalink
Fix publish.sh and deploy step to work (#2)
Browse files Browse the repository at this point in the history
setuputils.py imports __version__, not version, which caused issues
when running publish.sh and on deploy:

https://circleci.com/gh/bluelabsio/sqlalchemy-vertica-python/76
  • Loading branch information
vinceatbluelabs authored Feb 20, 2020
1 parent 9198645 commit 9155b85
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
from setuptools import setup
from setuputils import TestCoverageRatchetCommand, VerifyVersionCommand

version = '0.5.0'
__version__ = '0.5.1'
setup(
name='sqlalchemy-vertica-python',
version=version,
version=__version__,
description='Vertica dialect for sqlalchemy using vertica_python',
long_description=open("README.rst").read(),
license="MIT",
url='https://github.com/LocusEnergy/sqlalchemy-vertica-python',
download_url = 'https://github.com/LocusEnergy/sqlalchemy-vertica-python/tarball/{}'.format(version),
download_url = 'https://github.com/LocusEnergy/sqlalchemy-vertica-python/tarball/{}'.format(__version__),
author='Locus Energy',
author_email='dbio@locusenergy.com',
packages=[
Expand Down

0 comments on commit 9155b85

Please sign in to comment.