packages feed

matplotlib 0.7.2 → 0.7.3

raw patch · 2 files changed

+5/−4 lines, 2 filesdep +directoryPVP ok

version bump matches the API change (PVP)

Dependencies added: directory

API changes (from Hackage documentation)

Files

matplotlib.cabal view
@@ -1,5 +1,5 @@ name:                matplotlib-version:             0.7.2+version:             0.7.3 synopsis:            Bindings to Matplotlib; a Python plotting library description:     Matplotlib is probably the most full featured plotting library out there.@@ -45,6 +45,7 @@                      , tasty-hunit                      , tasty-expected-failure                      , tasty-golden+                     , directory                      , bytestring                      , process                      , temporary
test/Spec.hs view
@@ -103,15 +103,15 @@ -- * Tests  main = do-  createDirectoryIfMissing "/tmp/imgs/"+  createDirectoryIfMissing False "/tmp/imgs/"   defaultMain $ tests "All tests" testPlot  main' = do-  createDirectoryIfMissing "/tmp/imgs/"+  createDirectoryIfMissing False "/tmp/imgs/"   defaultMain $ tests "Golden tests" testPlotGolden  main'' = do-  createDirectoryIfMissing "/tmp/imgs/"+  createDirectoryIfMissing False "/tmp/imgs/"   defaultMain $ testGroup "All tests" [tests "Execution tests" testPlot                                       , toneDownTests "Unreliable across machines" $ tests "Golden tests" testPlotGolden]