Skip to content

Commit

Permalink
yampa: Relax version bounds on deepseq. Refs #280.
Browse files Browse the repository at this point in the history
Yampa fails to compile with GHC 9.8, due to a constraint in the cabal
file requiring deepseq < 1.5.0.0, when the version included with GHC 9.8
is precisely 1.5.0.0.

This commit relaxes the upper version bound on deepseq. With that
constraint relaxed, Yampa compiles with GHC 9.8.1
  • Loading branch information
ivanperez-keera committed Dec 8, 2023
1 parent ae8b13e commit b677bbc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion yampa/Yampa.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ library
build-depends:
base < 6

, deepseq >= 1.3.0.1 && < 1.5
, deepseq >= 1.3.0.1 && < 1.6
, random >= 1.1 && < 1.3
, simple-affine-space >= 0.1 && < 0.3

Expand Down

0 comments on commit b677bbc

Please sign in to comment.