From 2d9de0576030c0d6b43e04827b2e33476e301c1e Mon Sep 17 00:00:00 2001 From: William Lachance Date: Sun, 24 May 2020 13:54:16 -0400 Subject: [PATCH] Default python executable should be python3 On Mac (still) the default python is python2, but it's python3 that you almost certainly want. Make this the default. --- example/frog.rkt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/example/frog.rkt b/example/frog.rkt index ed275a7b..dc933bbe 100644 --- a/example/frog.rkt +++ b/example/frog.rkt @@ -15,8 +15,8 @@ ;; Here we pass the xexprs through a series of functions. (~> xs (syntax-highlight #:python-executable (if (eq? (system-type) 'windows) - "python.exe" - "python") + "python3.exe" + "python3") #:line-numbers? #t #:css-class "source") (auto-embed-tweets #:parents? #t)