-
Notifications
You must be signed in to change notification settings - Fork 36
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
singletons-{th,base}: Require building with GHC 9.12
The most notable change is that because GHC 9.12 includes a fix for https://gitlab.haskell.org/ghc/ghc/-/issues/24911, the test suite output now includes explicit namespaces for its fixity declarations. Aside from that, the changes here are mostly bumping upper version bounds. Checks off one box in #619.
- Loading branch information
1 parent
7c884fa
commit a44961a
Showing
20 changed files
with
223 additions
and
180 deletions.
There are no files selected for viewing
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
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
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
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
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 |
---|---|---|
|
@@ -8,7 +8,7 @@ author: Richard Eisenberg <[email protected]>, Jan Stolarek <jan.stola | |
maintainer: Ryan Scott <[email protected]> | ||
bug-reports: https://github.com/goldfirere/singletons/issues | ||
stability: experimental | ||
tested-with: GHC == 9.10.1 | ||
tested-with: GHC == 9.12.1 | ||
extra-source-files: README.md, CHANGES.md, tests/README.md, | ||
tests/compile-and-dump/GradingClient/*.hs, | ||
tests/compile-and-dump/InsertionSort/*.hs, | ||
|
@@ -38,7 +38,7 @@ description: | |
. | ||
@singletons-base@ uses code that relies on bleeding-edge GHC language | ||
extensions. As such, @singletons-base@ only supports the latest major version | ||
of GHC (currently GHC 9.10). For more information, | ||
of GHC (currently GHC 9.12). For more information, | ||
consult the @singletons@ | ||
@<https://github.com/goldfirere/singletons/blob/master/README.md README>@. | ||
. | ||
|
@@ -65,18 +65,18 @@ source-repository head | |
|
||
custom-setup | ||
setup-depends: | ||
base >= 4.19 && < 4.21, | ||
Cabal >= 3.0 && < 3.13, | ||
base >= 4.19 && < 4.22, | ||
Cabal >= 3.0 && < 3.15, | ||
directory >= 1, | ||
filepath >= 1.3 | ||
|
||
library | ||
hs-source-dirs: src | ||
build-depends: base >= 4.20 && < 4.21, | ||
build-depends: base >= 4.21 && < 4.22, | ||
pretty, | ||
singletons == 3.0.*, | ||
singletons-th >= 3.5 && < 3.6, | ||
template-haskell >= 2.22.1 && < 2.23, | ||
template-haskell >= 2.23 && < 2.24, | ||
text >= 1.2, | ||
th-desugar >= 1.18 && < 1.19 | ||
default-language: GHC2021 | ||
|
@@ -155,7 +155,7 @@ test-suite singletons-base-test-suite | |
main-is: SingletonsBaseTestSuite.hs | ||
other-modules: SingletonsBaseTestSuiteUtils | ||
|
||
build-depends: base >= 4.20 && < 4.21, | ||
build-depends: base >= 4.21 && < 4.22, | ||
bytestring >= 0.10.9, | ||
deepseq >= 1.4.4, | ||
filepath >= 1.3, | ||
|
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
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
Oops, something went wrong.