Skip to content

Commit

Permalink
ogma-cli: Add version bounds to all dependencies. Refs nasa#119.
Browse files Browse the repository at this point in the history
The cabal packages do not currently specify all version bounds. This
makes hackage complain when we upload packages, and can create stability
/ installation issues for users.

This commit adds lower and upper version bounds for all dependencies.
  • Loading branch information
ivanperez-keera committed Dec 26, 2024
1 parent 0f49552 commit 923b7fa
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions ogma-cli/ogma-cli.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ executable ogma

build-depends:
base >= 4.11.0.0 && < 5
, optparse-applicative
, optparse-applicative >= 0.14 && < 0.19
, ogma-core >= 1.5.0 && < 1.6

hs-source-dirs:
Expand All @@ -160,11 +160,11 @@ test-suite test-ogma

build-depends:
base >= 4.11.0.0 && < 5
, HUnit
, process
, test-framework
, test-framework-hunit
, unix
, HUnit >= 1.2.0.0 && < 1.7
, process >= 1.6 && < 1.7
, test-framework >= 0.8.2 && < 0.9
, test-framework-hunit >= 0.2.0 && < 0.4
, unix >= 2.7.2.2 && < 2.9

hs-source-dirs:
tests
Expand Down

0 comments on commit 923b7fa

Please sign in to comment.