From 208b0ca1a33452b147c776898ab3d637bcbb05b9 Mon Sep 17 00:00:00 2001 From: Matt Hunzinger Date: Sat, 15 Jun 2024 04:17:08 -0400 Subject: [PATCH] Fix CI --- prompt.cabal | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/prompt.cabal b/prompt.cabal index 2ba0f54..e4cc57b 100644 --- a/prompt.cabal +++ b/prompt.cabal @@ -10,15 +10,15 @@ executable prompt default-language: Haskell2010 ghc-options: -Wall build-depends: - base ^>=4.17.2.1, + base >= 4, async, directory, process, time, - ansi-terminal ^>=1, - filepath ^>=1.4.2, - xdg-basedir ^>=0.2.2, - optparse-applicative ^>=0.18.1 + ansi-terminal >= 1, + filepath >= 1.4, + xdg-basedir >= 0.2, + optparse-applicative >= 0.18 library prompt-lib exposed-modules: @@ -26,12 +26,12 @@ library prompt-lib hs-source-dirs: app default-language: Haskell2010 build-depends: - base ^>=4.17.2.1, + base >= 4, async, directory, process, time, - ansi-terminal ^>=1, - filepath ^>=1.4.2, - xdg-basedir ^>=0.2.2, - optparse-applicative ^>=0.18.1 \ No newline at end of file + ansi-terminal >= 1, + filepath >= 1.4, + xdg-basedir >= 0.2, + optparse-applicative >= 0.18 \ No newline at end of file