-
Notifications
You must be signed in to change notification settings - Fork 720
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
Update index state #5856
Update index state #5856
Conversation
1650f0e
to
c2eff4a
Compare
cabal.project
Outdated
@@ -54,6 +54,9 @@ package bitvec | |||
package plutus-scripts-bench | |||
haddock-options: "--optghc=-fplugin-opt PlutusTx.Plugin:defer-errors" | |||
|
|||
constraints: | |||
io-classes-mtl < 0.1.2.0 |
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.
Why? can you add a comment explaining why?
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.
If you don't include it you get this error:
src/Control/Monad/Class/MonadSTM/Trans.hs:116:5: error: [GHC-54721]
‘writeTMVar’ is not a (visible) method of class ‘MonadSTM’
|
116 | writeTMVar = ContTSTM .: writeTMVar
| ^^^^^^^^^^
src/Control/Monad/Class/MonadSTM/Trans.hs:194:5: error: [GHC-54721]
‘writeTMVar’ is not a (visible) method of class ‘MonadSTM’
|
194 | writeTMVar = lift .: writeTMVar
| ^^^^^^^^^^
src/Control/Monad/Class/MonadSTM/Trans.hs:272:5: error: [GHC-54721]
‘writeTMVar’ is not a (visible) method of class ‘MonadSTM’
|
272 | writeTMVar = lift .: writeTMVar
| ^^^^^^^^^^
src/Control/Monad/Class/MonadSTM/Trans.hs:350:5: error: [GHC-54721]
‘writeTMVar’ is not a (visible) method of class ‘MonadSTM’
|
350 | writeTMVar = lift .: writeTMVar
| ^^^^^^^^^^
src/Control/Monad/Class/MonadSTM/Trans.hs:428:5: error: [GHC-54721]
‘writeTMVar’ is not a (visible) method of class ‘MonadSTM’
|
428 | writeTMVar = lift .: writeTMVar
| ^^^^^^^^^^
src/Control/Monad/Class/MonadSTM/Trans.hs:506:5: error: [GHC-54721]
‘writeTMVar’ is not a (visible) method of class ‘MonadSTM’
|
506 | writeTMVar = lift .: writeTMVar
| ^^^^^^^^^^
src/Control/Monad/Class/MonadSTM/Trans.hs:584:5: error: [GHC-54721]
‘writeTMVar’ is not a (visible) method of class ‘MonadSTM’
|
584 | writeTMVar = lift .: writeTMVar
| ^^^^^^^^^^
src/Control/Monad/Class/MonadSTM/Trans.hs:662:5: error: [GHC-54721]
‘writeTMVar’ is not a (visible) method of class ‘MonadSTM’
|
662 | writeTMVar = lift .: writeTMVar
| ^^^^^^^^^^
This is just changes in the definition of type classes in our dependencies that break other dependencies. When all our other dependencies update accordingly we can remove this constraint.
eb4fd39
to
cbda256
Compare
289289f
to
51ca7e2
Compare
6024df8
to
d2ca428
Compare
d2ca428
to
36985ac
Compare
Description
The additional constraint in
cabal.project
is explained in a comment below.Checklist
See Runnings tests for more details
CHANGELOG.md
for affected package.cabal
files are updatedhlint
. See.github/workflows/check-hlint.yml
to get thehlint
versionstylish-haskell
. See.github/workflows/stylish-haskell.yml
to get thestylish-haskell
versionghc-8.10.7
andghc-9.2.7
Note on CI
If your PR is from a fork, the necessary CI jobs won't trigger automatically for security reasons.
You will need to get someone with write privileges. Please contact IOG node developers to do this
for you.