-
Notifications
You must be signed in to change notification settings - Fork 259
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
2 additions
and
4 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -23,10 +23,8 @@ maintainers = [{name = "Enzo Busseti", email = "[email protected]"}] | |
# their versions of dependencies work correctly. Please do report bugs coming | ||
# from some combination of dependency versions that break Cvxportfolio code. | ||
|
||
dependencies = ["pandas", | ||
# October 2024, Numpy 2 causes issues with CVXPY on Python 3.13 | ||
"numpy; python_version<'3.13'", | ||
"numpy", "matplotlib", "requests", "cvxpy", | ||
dependencies = [ | ||
"pandas", "numpy", "matplotlib", "requests", "cvxpy", | ||
# "multiprocess", # robustifies usage w/ 3rd party modules, used if installed | ||
"scs" # it's hardcoded as fallback solver if numerical errors | ||
] | ||
|