Skip to content

Commit

Permalink
[#114] Restrict dependencies less
Browse files Browse the repository at this point in the history
- The dependecies, especially `Requires` seem to be too restrictive.
- This results in many cases that an old version of COSMO is installed
for the user, which isn't immediately obvious.
  • Loading branch information
migarstka committed Aug 3, 2020
1 parent 2dcf4a8 commit 6626c6d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,11 @@ Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
UnsafeArrays = "c4a57d5a-5b31-53a6-b365-19f8c011fbd6"

[compat]
DataStructures = "~0.17.0"
DataStructures = "^0.17.0"
MathOptInterface = "~0.9.7"
QDLDL = "~0.1.4"
Requires ="~0.5"
UnsafeArrays = "^0.3"
Requires ="^1"
UnsafeArrays = "0.3, 1"
julia = "^1"

[extras]
Expand Down

0 comments on commit 6626c6d

Please sign in to comment.