-
Notifications
You must be signed in to change notification settings - Fork 42
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
Add Semigroup Form instance #68
Conversation
Attoparsec (and IIRC all other deps) have GHC-conditional dependency on semigroups: https://hackage.haskell.org/package/attoparsec-0.13.2.2/dependencies |
OK. Should I interpret that statement as "please change the |
And we need to bump lower bound on unordered containers, don't we? https://hackage.haskell.org/package/unordered-containers-0.2.8.0/changelog |
...erm, I don't know? I'm not affiliated with |
After getting some sleep, I realize that I might have wildly misinterpreted #68 (comment). I believe what you're asking is for me to change
Can you confirm if this is correct? |
@RyanGlScott yes! sorry for being cryptic myself, I hadn't enough sleep myself! |
Hm, the build is apparently failing due to this line: Line 109 in b61b152
which hardcodes a version number for |
@RyanGlScott yes, I want to check lowerbounds, and seems I have to check them on newer GHCs too, as that check didn't catch incorrect lowerbound (as lowerbounds were tested only on GHC-7.8.4 and GHC-7.10.3) |
OK, I'll try changing those lower bounds to |
...oops, I just noticed that this may be superseded by #69 now. |
Sorry for not notifying, merged as part of #69 |
This is needed to fix the build on GHC 8.4, where
Semigroup
is now a superclass ofMonoid
.This declares a dependency on
semigroups
, buthttp-api-data
was already transitively depending onsemigroups
viaattoparsec
.