From 8f4b1fee00a70b1e22e27b4f5e9a256ff2964cf4 Mon Sep 17 00:00:00 2001 From: Andrew Port Date: Thu, 23 Sep 2021 04:37:37 -0700 Subject: [PATCH] update setup.py download_url to point to wheel --- setup.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 6b2d7a8..ebec0fc 100644 --- a/setup.py +++ b/setup.py @@ -29,7 +29,8 @@ setup(name='svgpathtools', author=AUTHOR_NAME, author_email=AUTHOR_EMAIL, url=GITHUB, - download_url='{}/raw/1.4.1/dist/svgpathtools-{}.tar.gz'.format(GITHUB, VERSION), + download_url='{}/releases/download/{}/svgpathtools-{}-py2.py3-none-any.whl' + ''.format(GITHUB, VERSION, VERSION), license='MIT', install_requires=['numpy', 'svgwrite'], platforms="OS Independent",