From f2e0e707f9e0de81dffe2a5c3d1907d753ee901e Mon Sep 17 00:00:00 2001 From: Dennis Felsing Date: Mon, 8 Jan 2024 00:27:54 +0100 Subject: [PATCH] Limit cabal version 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. --- ghc-vis.cabal | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ghc-vis.cabal b/ghc-vis.cabal index 6e7137c..275d9cc 100644 --- a/ghc-vis.cabal +++ b/ghc-vis.cabal @@ -37,7 +37,7 @@ flag full -- Description: "SDL window" custom-setup - setup-depends: base >= 4, Cabal >= 1.24, filepath + setup-depends: base >= 4, Cabal >= 1.24 && < 4, filepath Library Exposed-modules: GHC.Vis