Skip to content

Commit f34d301

Browse files
committed
FIX: download URL was incorrect in setup.py.
1 parent 6357b94 commit f34d301

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

refcycle/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,4 @@
1616
1717
"""
1818

19-
__version__ = "0.0.0"
19+
__version__ = "0.0.1"

setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
"""
2828

2929

30-
URL = "https://github.com/mdickinson/refcycle"
30+
PROJECT_URL = "https://github.com/mdickinson/refcycle"
3131

3232

3333
def get_version():
@@ -46,14 +46,14 @@ def get_version():
4646
version=version,
4747
author="Mark Dickinson",
4848
author_email="dickinsm@gmail.com",
49-
url=URL,
49+
url=PROJECT_URL,
5050
license="Apache license",
5151
description="Find and visualise reference cycles between Python objects.",
5252
long_description=LONG_DESCRIPTION,
5353
install_requires=["six"],
5454
packages=find_packages(),
5555
platforms=["Windows", "Linux", "Mac OS-X", "Unix", "Solaris"],
56-
download_url="{}/releases/tag/{}".format(URL, version),
56+
download_url="{}/archive/v{}.tar.gz".format(PROJECT_URL, version),
5757
classifiers=[
5858
"Development Status :: 3 - Alpha",
5959
"Intended Audience :: Developers",

0 commit comments

Comments
 (0)