Skip to content

Commit

Permalink
ogma-language-smv: 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 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 24, 2024
1 parent 8e98ea7 commit 150dba8
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions ogma-language-smv/ogma-language-smv.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -72,8 +72,8 @@ custom-setup
setup-depends:
base >= 4.11.0.0 && < 5
, Cabal >= 2.0 && < 3.9
, process
, BNFC >= 2.9.1
, process >= 1.6 && < 1.7
, BNFC >= 2.9.1 && < 2.10

library

Expand All @@ -93,7 +93,7 @@ library

build-depends:
base >= 4.11.0.0 && < 5
, array >= 0.5.2.0
, array >= 0.5.2.0 && < 0.6

hs-source-dirs:
src
Expand All @@ -110,9 +110,9 @@ test-suite unit-tests

build-depends:
base >= 4.11.0.0 && < 5
, QuickCheck
, test-framework
, test-framework-quickcheck2
, QuickCheck >= 2.8.2 && < 2.16
, test-framework >= 0.8.2 && < 0.9
, test-framework-quickcheck2 >= 0.3.0.4 && < 0.4

, ogma-language-smv

Expand Down

0 comments on commit 150dba8

Please sign in to comment.