Closed lehins closed 3 years ago
That's right we need to wait for haskell/test-framework#53 Hopefully someone will get to it soon. It also blocks us from getting random-1.2.0 into stackage commercialhaskell/stackage#5474
Okay, thanks for confirming!
haskell/test-framework#53 has been merged, waiting for a revision or new release
@jtdaugherty test-framework had a revision added that fixes bounds for random. FYI you didn't have to wait for test-framework to update bounds in order fix the bounds for vty
. As long as you project works with the newer dependency then it is fine to fix it up front without waiting for transitive dependencies to fix their bounds. Building and checking if it works is possible with allow-newer
flag.
Thanks for this patch! Right now I cannot merge it, because
vty
will not build againstrandom==1.2.0
because its dependency ontest-framework
also will not build againstrandom
version1.2.0
. Once that changes, I can then ensure thatvty
builds successfully with the latestrandom
.