From c208ae01bc3d8d1efddc396bb33072731ceb9b79 Mon Sep 17 00:00:00 2001 From: Bartosz Nitka Date: Mon, 24 Jul 2017 09:35:10 -0700 Subject: [PATCH] Remove redundant version bounds Summary: Repeating version bounds on executables that depend on `duckling` library is needless bureaucracy. Reviewed By: JonCoens Differential Revision: D5478388 fbshipit-source-id: e18f1b8 --- duckling.cabal | 42 +++++++++++++++++++++--------------------- 1 file changed, 21 insertions(+), 21 deletions(-) diff --git a/duckling.cabal b/duckling.cabal index e2186333..c57f557b 100644 --- a/duckling.cabal +++ b/duckling.cabal @@ -518,11 +518,11 @@ test-suite duckling-test main-is: TestMain.hs hs-source-dirs: tests build-depends: duckling - , base >= 4.8.2 && < 5.0 - , aeson >= 0.11.3.0 && < 1.1 - , text >= 1.2.2.1 && < 1.3 - , time >= 1.5.0.1 && < 1.9 - , unordered-containers >= 0.2.7.2 && < 0.3 + , base + , aeson + , text + , time + , unordered-containers , tasty >= 0.11.1 && < 0.12 , tasty-hunit >= 0.9.2 && < 1.0 other-modules: Duckling.Tests @@ -718,10 +718,10 @@ executable duckling-regen-exe other-modules: Duckling.Ranking.Train , Duckling.Ranking.Generate build-depends: duckling - , base >= 4.8.2 && < 5.0 + , base , haskell-src-exts >= 1.18 && < 1.19 - , text >= 1.2.2.1 && < 1.3 - , unordered-containers >= 0.2.7.2 && < 0.3 + , text + , unordered-containers default-language: Haskell2010 default-extensions: OverloadedStrings @@ -731,20 +731,20 @@ executable duckling-example-exe ghc-options: -threaded -rtsopts -with-rtsopts=-N other-modules: Duckling.Data.TimeZone build-depends: duckling - , base >= 4.8.2 && < 5.0 - , aeson >= 0.11.3.0 && < 1.1 - , bytestring >= 0.10.6.0 && < 0.11 + , base + , aeson + , bytestring , directory >= 1.2.2.0 && < 1.4 - , extra >= 1.4.10 && < 1.6 + , extra , filepath >= 1.4.0.0 && < 1.5 , snap-core >= 1.0.2.0 && < 1.1 , snap-server >= 1.0.1.1 && < 1.1 - , text >= 1.2.2.1 && < 1.3 - , text-show >= 2.1.2 && < 3.5 - , time >= 1.5.0.1 && < 1.9 + , text + , text-show + , time , timezone-olson >= 0.1.7 && < 0.2 - , timezone-series >= 0.1.5.1 && < 0.2 - , unordered-containers >= 0.2.7.2 && < 0.3 + , timezone-series + , unordered-containers default-language: Haskell2010 default-extensions: OverloadedStrings @@ -754,8 +754,8 @@ executable duckling-request-sample ghc-options: -threaded -rtsopts -with-rtsopts=-N other-modules: Duckling.Data.TimeZone build-depends: duckling - , base >= 4.8.2 && < 5.0 - , dependent-sum >= 0.3.2.2 && < 0.5 + , base + , dependent-sum default-language: Haskell2010 default-extensions: OverloadedStrings @@ -765,8 +765,8 @@ executable duckling-expensive ghc-options: -threaded -rtsopts -with-rtsopts=-N other-modules: Duckling.Data.TimeZone build-depends: duckling - , base >= 4.8.2 && < 5.0 - , dependent-sum >= 0.3.2.2 && < 0.5 + , base + , dependent-sum default-language: Haskell2010 default-extensions: OverloadedStrings