-
Notifications
You must be signed in to change notification settings - Fork 7
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
Support ghc-9.10 #19
Support ghc-9.10 #19
Conversation
@infinity0 The tag has been provided for |
Sorry, I don't have time to look very closely at the moment. The errors look related to missing instances, e.g. for vector:
I notice that the autoregen script changed the QuickCheck bound for these vector tests from >2.16 to >2.15, that will be because vector upstream made this change but it still seems weird, do you know why? |
If |
Sorry if this isn't relevant, but in an attempt to help out I forked, cloned, and ran |
For me that does not work on the With
which are fatal errors. On my branch there are errors like:
which is also a fatal error. |
All the |
Ok, I manually added the following to the
and some of the errors went away. I also added a |
Ok, finally have this building and passing all tests locally). |
@infinity0 All the tests have passed. Is this ok to merge? Also, I can bump the cabal version numbers and upload to Hackage if you want me to (I am a Hackage Trustee). |
EDIT: I realised it probably wasn't running all the tests so I tried running Here's my example output, not that it matters if you've fixed things. I was running on this branch. I just get RUNNING.../PASS when using cabal-3.10.3.0.
|
If you had to edit As long as running |
An easy way to figure out what to add to the patch files, is to re-run |
Wow, fiddling with these patches REALLY hurts my brain. |
FInally have it working! 🎉 Running |
The
unordered-containers
andvector
packages have been updated. Still waiting for containers (see haskell/containers#1012 ).When
containers
is added, still need to addghc-9.10
to the CI build matrix.