From 0509e07270df2d5de43f4a3cac12b2e922226c9e Mon Sep 17 00:00:00 2001 From: sinseman44 Date: Sun, 15 Nov 2020 08:14:18 +0100 Subject: [PATCH] update setup.py to install pycnc as dependency --- setup.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 98a7920..743a422 100755 --- a/setup.py +++ b/setup.py @@ -21,7 +21,10 @@ setuptools.setup( install_requires=[ 'RPi.GPIO', 'RPLCD', - 'PyCNC @ https://github.com/sinseman44/PyCNC/archive/v2.0.0.tar.gz' + 'PyCNC<=2.0.0' + ], + dependency_links=[ + "https://github.com/sinseman44/PyCNC/archive/v2.0.0.zip#egg=pycnc-2.0.0", ], python_requires='>=3.6', )