From ed09f3c91e915c3b436854a7936566edceb3e8de Mon Sep 17 00:00:00 2001 From: Efraim Flashner Date: Tue, 15 Dec 2020 10:09:45 +0200 Subject: [PATCH] remove blas-src dependency --- Cargo.toml | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 1f3e1b6..36bc816 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -37,10 +37,6 @@ debug = true name = "ndarray" test = true bench = false -[dependencies.blas-src] -version = "0.2.0" -optional = true -default-features = false [dependencies.cblas-sys] version = "0.1.4" @@ -78,7 +74,7 @@ default-features = false version = "0.1" [features] -blas = ["cblas-sys", "blas-src"] +blas = ["cblas-sys"] docs = ["rustc-serialize", "serde-1"] serde-1 = ["serde"] test = ["test-blas-openblas-sys"] -- 2.29.2 select> Wojtek's customized Guix
aboutsummaryrefslogtreecommitdiff
path: root/gnu/tests/telephony.scm
ovic Courtès
AgeCommit message (Expand)Author
2024-01-09tests: telephony: Fix typo....* gnu/tests/telephony.scm: Fix typo. Series-to: 65371@debbugs.gnu.org Series-postfix: telephony-team Series-version: 2 Change-Id: I3eb048b8cdd1335c45ffb61b08425a18a2e7a4b2 Maxim Cournoyer
2024-01-09tests: telephony: Fix VPATH builds....* gnu/tests/telephony.scm (%jami-account-content-sexp): New variable. Compute its value with `read` instead of using `include`. * gnu/tests/data/jami-dummy-account.dat (%jami-account-content-sexp): Remove variable. Make the file contain just the S-expression. Change-Id: I8d37aaf7b739f5f39715bfb8a9b8c9536385fd09 Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com> Wojtek Kosior
2023-12-22tests: jami: Double timeouts....* gnu/tests/telephony.scm (run-jami-test): Pass #:timeout to ‘wait-for-service’. Double number passed to ‘with-retries’. Change-Id: Ib3c81a770c2d52b2eb40e4f28abc8e33f5c71fc8 Ludovic Courtès
2023-12-22tests: jami: Check status of Jami D-Bus session....* gnu/tests/telephony.scm (run-jami-test)["dbus session is up"]: New test. Reviewed-by: Maxim Cournoyer <maxim.cournoyer@gmail.com> Change-Id: Ifa9b57c732f3c64e1ec6bf3028b69a57cee56320 Ludovic Courtès
2022-01-16import/github: Test it....* Makefile.am (SCM_TESTS): Register new tests. * guix/import/github.scm (%github-api): New variable. (fetch-releases-or-tags): Use the new variable. * tests/import-github.scm: New file with tests. Signed-off-by: Ludovic Courtès <ludo@gnu.org> Maxime Devos