Skip to content

Commit

Permalink
Fixup version range of ImpossibleVersionRangeLib
Browse files Browse the repository at this point in the history
  • Loading branch information
philderbeast committed Dec 29, 2024
1 parent cd58ac2 commit 61d731f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 9 deletions.
Original file line number Diff line number Diff line change
@@ -1,11 +1,4 @@
# cabal check
The package will not build sanely due to these errors:
Error: [impossible-dep] The package has an impossible version range for a dependency on an internal library: pkg:internal >1.0 && <2.0. This version range does not include the current package, and must be removed as the current package's library will always be used.
These warnings may cause trouble when distributing the package:
Warning: [tz-upper-bounds] On library, these packages have upper bounds with trailing zeros:
- pkg
Please avoid trailing zeros for upper bounds.
Warning: [gt-lower-bounds] On library, these packages have greater than (>) lower bounds:
- pkg
Please use greater than or equals (>=) for lower bounds.
Error: [impossible-dep] The package has an impossible version range for a dependency on an internal library: pkg:internal >=1.0 && <2. This version range does not include the current package, and must be removed as the current package's library will always be used.
Error: Hackage would reject this package.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ license: GPL-3.0-or-later
library
exposed-modules: Module
build-depends: base == 4.*,
internal > 1.0 && < 2.0
internal >= 1.0 && < 2
default-language: Haskell2010

library internal
Expand Down

0 comments on commit 61d731f

Please sign in to comment.