-
Notifications
You must be signed in to change notification settings - Fork 34
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
Version 10.0+ does not build with GHC 9.0 #655
Comments
That’s unfortunate indeed. Alas, I don’t try to support all GHC variants, as trying to do so is an endless task. if this is a problem for you, I’d recommend getting a local copy and modifying it to either remove the example completely or rewrite it to avoid the overloaded record dot, and use that local version. |
Thanks for the explanation and that makes sense. However, it could be helpful to also update the base dependency version to represent this decision to avoid confusion. |
That’s a good point. Do you mind sending a PR that does that? I’ll be happy to merge! |
Waiting for PR to fix the dependency. Thanks. |
PR merged. |
There are two motivations for doing so: * `sbv-10.0` and later no longer build against GHC 8.10 (see LeventErkok/sbv#655), but we want to use a new `sbv` version to come to a resolution to #1548. As such, we need a newer GHC. * `ghcup` now recommends GHC 9.2.8 for most usage, so it's time we switched anyway.
There are two motivations for doing so: * `sbv-10.0` and later no longer build against GHC 8.10 (see LeventErkok/sbv#655), but we want to use a new `sbv` version to come to a resolution to #1548. As such, we need a newer GHC. * `ghcup` now recommends GHC 9.2.8 for most usage, so it's time we switched anyway.
There are two motivations for doing so: * `sbv-10.0` and later no longer build against GHC 8.10 (see LeventErkok/sbv#655), but we want to use a new `sbv` version to come to a resolution to #1548. As such, we need a newer GHC. * `ghcup` now recommends GHC 9.2.8 for most usage, so it's time we switched anyway.
The version 10.0+ contains a new example
Documentation.SBV.Examples.Puzzles.Orangutans
, which uses theOverloadedRecordDot
extension.The extension is nice but it is GHC 9.2+ only..
The text was updated successfully, but these errors were encountered: