Implementations of various algorithms for vector (http://code.haskell.org/~dolio/)
#12Bump upper bound of vector in vector-algoritms.cabal
vector-algorithms fails to build if the latest version of vector is used (0.12.0.1).
vector-algoritms.cabal specifies vector should be >= 0.6 && < 0.12. Since 0.12.0.1 > 0.12, the dependency check fails.
I've attached a patch the fixes this.
Issue Bundle- status set to closed
It appears this was fixed in Hackage: https://hackage.haskell.org/package/vector-algorithms-0.7.0.1/revisions/
- status set to open
Chai T.Rex,
Though the package description was updated in hackage.org, the cabal file in the source tar ball (https://hackage.haskell.org/package/vector-algorithms-0.7.0.1/vector-algorithms-0.7.0.1.tar.gz) still has the vector dependency set to:
vector >= 0.6 && < 0.12
I think the cabal file must be updated in the source and a new version needs to be released.
ps: The build for vector-algorithms package in GNU Guix is failing due to this problem: https://hydra.gnu.org/job/gnu/master/ghc-vector-algorithms-0.7.0.1.x86_64-linux
We need to bump up the upper bound of base to:
base (>=4.5 && <4.13)
to allow for compilation with ghc-8.6.1