Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Allow-newer for baby-l4 to allow the usage of cabal repl --enable-multi-repl #626

Merged
merged 1 commit into from
Oct 4, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 19 additions & 1 deletion lib/haskell/cabal.project
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,25 @@ source-repository-package
allow-newer:
compact:*,
udpipe-hs:base,
gf:*
gf:*,
-- allows to use `cabal repl --enable-multi-repl`.
-- as this requires Cabal(-syntax) >= 3.12
-- However, we don't want to allow newer Cabal and Cabal-syntax
-- in general, as we then may use `Cabal-3.12` and `Cabal-syntax-3.14`
-- which leads to terrible error messages such as:
--
-- Error:
-- Problem with module re-exports:
-- - The module 'Distribution.Compat.Typeable'
-- is not exported by any suitable package.
-- It occurs in neither the 'exposed-modules' of this package,
-- nor any of its 'build-depends' dependencies.
-- In the stanza 'library'
-- In the package 'Cabal-3.12.1.0'
--
baby-l4:Cabal-syntax,
baby-l4:Cabal


constraints:
graphviz ==2999.20.2.0
Expand Down