From cff0015b1d3b98d933fff1e445075f086a60c472 Mon Sep 17 00:00:00 2001 From: iainrb <1695061+iainrb@users.noreply.github.com> Date: Mon, 14 Mar 2022 16:08:27 -0400 Subject: [PATCH] Specify versions for all Python dependencies; resolves incompatibilities in v0.5.1 --- setup.py | 19 +++++++++++++------ 1 file changed, 13 insertions(+), 6 deletions(-) diff --git a/setup.py b/setup.py index 21fed96..c6c12c5 100755 --- a/setup.py +++ b/setup.py @@ -31,12 +31,19 @@ packages=find_packages(exclude=['tests']), include_package_data=True, - install_requires=['svtyper==0.7.1', 'numpy', 'scipy', 'statsmodels', 'pandas==0.19.2', 'setuptools', - 'google-auth', - 'google-cloud-storage', - 'google-compute-engine', - 'crcmod', - 'logzero'], + install_requires=[ + 'svtyper==0.7.1', + 'numpy==1.16.6', + 'scipy==1.2.3', + 'statsmodels==0.10.0', + 'pandas==0.21.1', + 'setuptools==44.1.1', + 'google-auth==1.35.0', + 'google-cloud-storage==1.44.0', + 'google-compute-engine==2.8.13', + 'crcmod==1.7', + 'logzero==1.7.0' + ], scripts=['scripts/create_coordinates'], entry_points={