Skip to content

Commit

Permalink
Limit cabal and base versions
Browse files Browse the repository at this point in the history
The dependency 'setup-depends: 'Cabal' does not specify an upper bound on the version number. Each major release of the 'Cabal' package changes the API in various ways and most packages will need some changes to compile with it. If you are not sure what upper bound to use then use the next major version.
  • Loading branch information
def- committed Jan 7, 2024
1 parent e10598b commit 8508103
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ghc-vis.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ flag full
-- Description: "SDL window"

custom-setup
setup-depends: base >= 4, Cabal >= 1.24, filepath
setup-depends: base >= 4 && < 5, Cabal >= 1.24 && < 4, filepath

Library
Exposed-modules: GHC.Vis
Expand Down

0 comments on commit 8508103

Please sign in to comment.