Skip to content
This repository was archived by the owner on Feb 21, 2020. It is now read-only.

Commit 0b6d48e

Browse files
Fix download URL for 0.2.2 in setup.py
1 parent 50ffa58 commit 0b6d48e

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

setup.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
11
from setuptools import setup
22

3+
version = '0.2.2'
34
setup(
45
name='sqlalchemy-vertica-python',
5-
version='0.2.2',
6+
version=version,
67
description='Vertica dialect for sqlalchemy using vertica_python',
78
long_description=open("README.rst").read(),
89
license="MIT",
910
url='https://github.com/LocusEnergy/sqlalchemy-vertica-python',
10-
download_url = 'https://github.com/LocusEnergy/sqlalchemy-vertica-python/tarball/0.2.1',
11+
download_url = 'https://github.com/LocusEnergy/sqlalchemy-vertica-python/tarball/{}'.format(version),
1112
author='Locus Energy',
1213
author_email='dbio@locusenergy.com',
1314
packages=[

0 commit comments

Comments
 (0)