-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #12 from FlorianSchwendinger/remove_matrix_dependency
Remove matrix dependency - I put the test which requires matrix into .Rbuildignore so the test can still be run locally but we don't need the Matrix package since they seam to change there API heavily.
- Loading branch information
Showing
7 changed files
with
44 additions
and
59 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
Package: scs | ||
Version: 3.0-0 | ||
Version: 3.0-1 | ||
Title: Splitting Conic Solver | ||
Authors@R: c( person("Florian", "Schwendinger", role = c("aut", "cre"), email = "[email protected]"), | ||
person("Brendan", "O'Donoghue", role = c("aut", "cph")), | ||
|
@@ -14,10 +14,9 @@ Description: Solves convex cone programs via operator splitting. Can solve: | |
Depends: R (>= 3.5.0) | ||
SystemRequirements: GNU Make | ||
Suggests: | ||
Matrix, | ||
slam, | ||
testthat | ||
Encoding: UTF-8 | ||
License: GPL-3 | ||
URL: https://github.com/FlorianSchwendinger/scs | ||
RoxygenNote: 7.1.2 | ||
RoxygenNote: 7.2.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
|
||
docs: | ||
R -e 'library("roxygen2"); roxygenize(".", c("rd", "namespace"), load_source)' | ||
|
||
build: | ||
R CMD build . | ||
|
||
inst: build | ||
R CMD INSTALL scs*.tar.gz | ||
|
||
check: build | ||
R CMD check scs*.tar.gz | ||
|
||
cran_check: build | ||
R CMD check --as-cran scs*.tar.gz | ||
|
||
manual: clean | ||
R CMD Rd2pdf --output=Manual.pdf . | ||
|
||
clean: | ||
rm -f Manual.pdf README.knit.md README.html | ||
rm -rf .Rd2pdf* | ||
|
||
check_mac_m1: build | ||
R -e "rhub::check(dir(pattern = 'scs_.*.tar.gz'), platform = 'macos-m1-bigsur-release')" | ||
|
||
check_mac_old: build | ||
R -e "rhub::check(dir(pattern = 'scs_.*.tar.gz'), platform = 'macos-highsierra-release-cran')" | ||
|
||
check_gcc_san: build | ||
R -e "rhub::check(dir(pattern = 'scs_.*.tar.gz'), platform = 'linux-x86_64-rocker-gcc-san')" | ||
|
||
check_debian_clang: build | ||
R -e "rhub::check(dir(pattern = 'scs_.*.tar.gz'), platform = 'debian-clang-devel')" | ||
|
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,4 @@ | ||
library(testthat) | ||
library(scs) | ||
library(slam) | ||
library(Matrix) | ||
test_check("scs") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters