diff --git a/ChangeLog.md b/ChangeLog.md
--- a/ChangeLog.md
+++ b/ChangeLog.md
@@ -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
 
diff --git a/PyF.cabal b/PyF.cabal
--- a/PyF.cabal
+++ b/PyF.cabal
@@ -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
diff --git a/test/SpecUtils.hs b/test/SpecUtils.hs
--- a/test/SpecUtils.hs
+++ b/test/SpecUtils.hs
@@ -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
