Skip to content

Commit 8d1d971

Browse files
jolarsCopilot
andcommitted
fix: use :: in pip+git requirement
Update solvers/slope_path.py Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> Update solvers/pgd_safe_screening.py Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
1 parent d567f1c commit 8d1d971

2 files changed

Lines changed: 2 additions & 6 deletions

File tree

solvers/pgd_safe_screening.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,7 @@ class Solver(BaseSolver):
1111
name = "PGD_safe_screening"
1212
sampling_strategy = "iteration"
1313
install_cmd = "conda"
14-
requirements = ["pip:git+https://github.com/c-elvira/slopescreening"]
15-
# TODO when benchopt 1.7 is released, update to
16-
# "pip::git+https://github.com/c-elvira/slopescreening"
14+
requirements = ["pip::git+https://github.com/c-elvira/slopescreening"]
1715

1816
references = [
1917
"C. Elvira and C. Herzet, “Safe rules for the identification of zeros in ",

solvers/slope_path.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,7 @@ class Solver(BaseSolver):
1010
name = "SlopePath"
1111
sampling_strategy = "iteration"
1212
install_cmd = "conda"
13-
requirements = ["pip:git+https://github.com/jolars/slope-path"]
14-
# TODO when benchopt 1.7 is released, update to
15-
# "pip::git..."
13+
requirements = ["pip::git+https://github.com/jolars/slope-path"]
1614

1715
references = [
1816
"Dupuis, X., & Tardivel, P. (2024). The solution path of SLOPE. "

0 commit comments

Comments
 (0)