Skip to content

Commit ab717f6

Browse files
copilot: Relax version constraint on optparse-applicative. Refs #488.
In order to keep Copilot effectively working in the current Haskell ecosystem, we need to extend the versions of dependencies that Copilot can be installed with. For example, optparse-applicative has seen a new release 0.18.1.0, but copilot needs versions strictly lower than 0.18. This commit relaxes the upper bounds on optparse-applicative so that it can be installed with the 0.18 series.
1 parent ca738f7 commit ab717f6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

copilot/copilot.cabal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ library
4848
-fno-warn-orphans
4949
build-depends:
5050
base >= 4.9 && < 5
51-
, optparse-applicative >= 0.14 && < 0.18
51+
, optparse-applicative >= 0.14 && < 0.19
5252
, directory >= 1.3 && < 1.4
5353
, filepath >= 1.4 && < 1.5
5454

0 commit comments

Comments
 (0)