From: Luke Kenneth Casson Leighton Date: Fri, 19 Jun 2020 23:50:13 +0000 (+0100) Subject: remove version in install_requires so that it does not download arbitrary X-Git-Tag: 24jan2021_ls180~14 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=32d5b5d764d82093259e0a5fc65213a77a13e05d;p=nmigen-soc.git remove version in install_requires so that it does not download arbitrary internet version of nmigen --- diff --git a/setup.py b/setup.py index 17064cc..4d91617 100644 --- a/setup.py +++ b/setup.py @@ -23,7 +23,7 @@ setup( #long_description="""TODO""", license="BSD", setup_requires=["setuptools_scm"], - install_requires=["nmigen~=0.1.rc1"], + install_requires=["nmigen"], packages=find_packages(), project_urls={ "Source Code": "https://github.com/m-labs/nmigen-soc",