You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Aug 23, 2018. It is now read-only.
If a downstream package specifies a maximum version while elm-package.json specifies a version above that, the maximum downstream version will be selected rather than the explicitly set one.
The SSCCE below shows this with the interaction between elm-css and datetimepicker. This version of datetimepicker has a range for elm-css including < 9.0.0.
This doesn't seem to have been reported in this repo. If this is the wrong place for it, I can move the issue somewhere more relevant. :)
To Reproduce
{
"version": "1.0.0",
"summary": "helpful summary of your project, less than 80 characters",
"repository": "https://github.com/user/project.git",
"license": "BSD3",
"source-directories": [
"."
],
"exposed-modules": [],
"dependencies": {
"abadi199/datetimepicker": "5.0.0 <= v <= 5.0.0",
"elm-lang/core": "5.1.1 <= v < 6.0.0",
"rtfeldman/elm-css": "9.1.0 <= v <= 9.1.0"
},
"elm-version": "0.18.0 <= v < 0.19.0"
}
put the elm-package.json above in a directory
run elm package install --yes
check elm-stuff/exact-dependencies.json
expected: elm-css to be at version 9.1.0
actual: elm-css at version 8.2.0
The text was updated successfully, but these errors were encountered:
BrianHicks
changed the title
downstream packages do not cause version conflict
downstream package constraints do not cause version conflict
Jul 24, 2017
If a downstream package specifies a maximum version while
elm-package.json
specifies a version above that, the maximum downstream version will be selected rather than the explicitly set one.The SSCCE below shows this with the interaction between elm-css and datetimepicker. This version of datetimepicker has a range for elm-css including
< 9.0.0
.This doesn't seem to have been reported in this repo. If this is the wrong place for it, I can move the issue somewhere more relevant. :)
To Reproduce
elm-package.json
above in a directoryelm package install --yes
elm-stuff/exact-dependencies.json
expected: elm-css to be at version 9.1.0
actual: elm-css at version 8.2.0
The text was updated successfully, but these errors were encountered: