From 0089c098ef00a0a35f99b178537e70a33b4690db Mon Sep 17 00:00:00 2001 From: Cole Poirier Date: Tue, 13 Oct 2020 10:21:53 -0700 Subject: [PATCH 1/1] move pia from install_requires to test_requires --- setup.py | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/setup.py b/setup.py index bbe5e144..3a58066a 100644 --- a/setup.py +++ b/setup.py @@ -15,14 +15,13 @@ install_requires = [ 'pygdbmi', 'nmigen-soc', # install manually from git.libre-soc.org 'ply', # needs to be installed manually - 'astor', - - # install from https://salsa.debian.org/Kazan-team/power-instruction-analyzer - 'power-instruction-analyzer', + 'astor' ] test_requires = [ 'nose', + # install from https://salsa.debian.org/Kazan-team/power-instruction-analyzer + 'power-instruction-analyzer' ] setup( -- 2.30.2