-
Notifications
You must be signed in to change notification settings - Fork 489
Update index-states and qualify 2 imports #7333
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
Conversation
| import Data.Set as Set | ||
| import Data.Set (Set) | ||
| import Data.Set qualified as Set | ||
| import Text.Pretty |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Without qualifying these imports I was getting name clashes on another branch of mine.
| , mtl | ||
| , nothunks | ||
| , nothunks ^>=0.2 | ||
| , plutus-core ^>=1.53 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Without this, was pulling in version 0.3.* which has an API change.
|
ana-pantilie
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks!
* Update index-states and qualify 2 imports * Nix updates
Needed to fully qualify the
SetandMapimports because there were name clashes in a WIP branch I am working on (preliminary ghc-9.14 support).Pre-submit checklist: