-
Notifications
You must be signed in to change notification settings - Fork 701
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixup version range of NonConfCheck/SetupBounds
- Loading branch information
1 parent
8e1cf9a
commit bdcb45e
Showing
2 changed files
with
1 addition
and
5 deletions.
There are no files selected for viewing
4 changes: 0 additions & 4 deletions
4
cabal-testsuite/PackageTests/Check/NonConfCheck/SetupBounds/cabal.out
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,4 @@ | ||
# cabal check | ||
These warnings may cause trouble when distributing the package: | ||
Warning: [gt-lower-bounds] On custom-setup, these packages have greater than (>) lower bounds: | ||
- base | ||
Please use greater than or equals (>=) for lower bounds. | ||
The following errors will cause portability problems on other environments: | ||
Error: [missing-bounds-setup] The dependency 'setup-depends: 'base' does not specify an upper bound on the version number. Each major release of the 'base' package changes the API in various ways and most packages will need some changes to compile with it. If you are not sure what upper bound to use then use the next major version. | ||
Error: Hackage would reject this package. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,7 +9,7 @@ maintainer: [email protected] | |
license: GPL-3.0-or-later | ||
|
||
custom-setup | ||
setup-depends: base > 1 | ||
setup-depends: base >= 1 | ||
|
||
library | ||
exposed-modules: Foo | ||
|