Skip to content

Commit

Permalink
Update lower bounds
Browse files Browse the repository at this point in the history
This commit updates the following lower bounds:

  template-haskell: 2.16 -> 2.17
  base: 4.14 -> 4.15

This ensures we don't try to build time >= 1.14 with GHC 8.10 or below,
which is not supported:

  lib\Data\Time\Clock\Internal\DiffTime.hs:83:18: error:
  Error:     Not in scope: type constructor or class ‘TH.Quote’

  lib\Data\Time\Clock\Internal\DiffTime.hs:83:44: error:
  Error:     Not in scope: type constructor or class ‘TH.Code’
  • Loading branch information
sheaf committed Apr 16, 2024
1 parent e5c5d19 commit 2763822
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions time.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -52,9 +52,9 @@ library
ghc-options: -Wall -fwarn-tabs
c-sources: lib/cbits/HsTime.c
build-depends:
base >= 4.14 && < 5,
base >= 4.15 && < 5,
deepseq >= 1.1,
template-haskell >= 2.16,
template-haskell >= 2.17,
if os(windows)
build-depends: Win32
exposed-modules:
Expand Down

0 comments on commit 2763822

Please sign in to comment.