From 31549ce71658b170238066d86476705a517061a6 Mon Sep 17 00:00:00 2001 From: Brandon Rhodes Date: Thu, 3 Jan 2019 23:31:26 -0500 Subject: [PATCH] Prevent myself from running with old Python Since I use an `ELLIPSIS` option that appears to not work under 2.7. --- bin/doctest.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/doctest.sh b/bin/doctest.sh index 8aaa7f7..0b37314 100755 --- a/bin/doctest.sh +++ b/bin/doctest.sh @@ -2,4 +2,4 @@ cd $(dirname "$0") cd .. -python -m doctest -o ELLIPSIS /dev/stdin < jplephem/__init__.py +python3 -m doctest -o ELLIPSIS /dev/stdin < jplephem/__init__.py