From 72d4eab21b16eef4583a598629d1b08063851fa1 Mon Sep 17 00:00:00 2001 From: Sebastien Bourdeauducq Date: Mon, 22 Jun 2020 15:28:58 +0800 Subject: [PATCH] conda: remove version specification from deps They just seem to tickle bugs in conda's shitty excuse for a dependency solver. --- artiq-fast/conda/artiq-deps.nix | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/artiq-fast/conda/artiq-deps.nix b/artiq-fast/conda/artiq-deps.nix index fe0fec1..f387ff2 100644 --- a/artiq-fast/conda/artiq-deps.nix +++ b/artiq-fast/conda/artiq-deps.nix @@ -1,16 +1,16 @@ [ - "python >=3.5.3" + "python" "llvmlite-artiq" - "binutils-or1k-linux >=2.27" - "pythonparser >=1.1" + "binutils-or1k-linux" + "pythonparser" "scipy" "numpy" "prettytable" "h5py" "python-dateutil" - "pyqt >=5.5" + "pyqt" "quamash" - "pyqtgraph 0.10.0" + "pyqtgraph" "pygit2" "python-levenshtein" "sipyco"