From: Luke Kenneth Casson Leighton Date: Tue, 14 Jun 2022 14:11:36 +0000 (+0100) Subject: add version constraints on setup install_requires X-Git-Tag: sv_maxu_works-initial~392 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=2f3b0800c44e54fd878d1bccbc1be9a13b3462e9;p=openpower-isa.git add version constraints on setup install_requires --- diff --git a/setup.py b/setup.py index 6959c970..0e871cee 100644 --- a/setup.py +++ b/setup.py @@ -14,11 +14,11 @@ version = '0.0.3' # manually. install_requires = [ - # ok to install using pip3 as long as it is not with the rest of Libre-SOC. # https://git.libre-soc.org/?p=nmigen.git - 'nmigen', + # NOT ok to install using pip3 https://git.libre-soc.org/?p=nmigen.git + 'nmigen>=0.1,<=0.5', # can be obtained with pip3, best done manually # https://git.libre-soc.org/?p=nmutil.git - 'libresoc-nmutil', + 'libresoc-nmutil>=0.0.0,<=1.0', # these should be fine 'pygdbmi==0.9.0.3', # gdb machine interface, requires older version (sigh) 'ply', # python lex yacc. very cool