packages feed

PyF 0.8.0.1 → 0.8.0.2

raw patch · 3 files changed

+7/−3 lines, 3 filesdep ~basedep ~megaparsecPVP ok

version bump matches the API change (PVP)

Dependency ranges changed: base, megaparsec

API changes (from Hackage documentation)

Files

ChangeLog.md view
@@ -1,6 +1,10 @@ # Revision history for PyF -## 0.8.0.0 -- 2019-08-27+## 0.8.0.2 -- 2019-08-27++- (minor bugfix in tests): Use python3 instead of "python" to help build on environment with both python2 and python3++## 0.8.0.1 -- 2019-08-27  - Stack support 
PyF.cabal view
@@ -1,6 +1,6 @@ cabal-version:       2.4 name:                PyF-version:             0.8.0.1+version:             0.8.0.2 synopsis: Quasiquotations for a python like interpolated string formater description: Quasiquotations for a python like interpolated string formater. license:             BSD-3-Clause
test/SpecUtils.hs view
@@ -27,7 +27,7 @@ runPythonExample :: String -> IO (Maybe String) runPythonExample s = do   let-    pythonPath = "python"+    pythonPath = "python3"     args = ["-c", "from math import pi;nan = float('NaN');inf = float('inf');print(f\'''" ++ s ++ "''', end='')"]   (ecode, stdout, _stderr) <- readProcessWithExitCode pythonPath args ""   pure $ case ecode of