From 2f3b0800c44e54fd878d1bccbc1be9a13b3462e9 Mon Sep 17 00:00:00 2001 From: Luke Kenneth Casson Leighton Date: Tue, 14 Jun 2022 15:11:36 +0100 Subject: [PATCH] add version constraints on setup install_requires --- setup.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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 -- 2.30.2