From f829708bbd8d2b7f1ec5d3d68c3c01d524b15eff Mon Sep 17 00:00:00 2001 From: Patrick Thomson Date: Thu, 30 Apr 2020 17:05:13 -0400 Subject: [PATCH] Fix annoying warning re. inter-project dependencies. Building `semantic-python` would result in a warning like this: ``` Warning: The package has an extraneous version range for a dependency on an internal library: semantic-python ==0.0.0.0. This version range includes the current package but isn't needed as the current package's library will always be used. ``` Removing this indeed-extraneous bound makes it go away. --- semantic-python/semantic-python.cabal | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/semantic-python/semantic-python.cabal b/semantic-python/semantic-python.cabal index fc31cd829..2e9b3cb54 100644 --- a/semantic-python/semantic-python.cabal +++ b/semantic-python/semantic-python.cabal @@ -73,7 +73,7 @@ test-suite compiling main-is: CoreTest.hs ghc-options: -threaded - build-depends: semantic-python == 0.0.0.0 + build-depends: semantic-python , aeson ^>= 1.4.4 , aeson-pretty ^>= 0.8.7 , bytestring ^>= 0.10.8.2