From 0a1bf2bcc6ffd6407ec7d82d208d406161d9dd8d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?P=C3=A1ll=20Haraldsson?= Date: Tue, 19 Apr 2022 12:18:47 +0000 Subject: [PATCH] Python 3.10 is latest I noticed Python 3.6 is EOLed, and was thinking you may not want say you support it (I didn't locate it), nor test it(?) to not waste resources (nor 2.7?). Maybe default to latest version, for Conda/Windows downloads, so people can profit from latest featuers? I'm not sure, but it seems 2.7 is still tested... --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index fe66f71b..9300647c 100644 --- a/README.md +++ b/README.md @@ -53,9 +53,9 @@ to the path of the `python` (or `python3` etc.) executable and then re-running ` In Julia: ENV["PYTHON"] = "... path of the python executable ..." - # ENV["PYTHON"] = raw"C:\Python37-x64\python.exe" # example for Windows, "raw" to not have to escape: "C:\\Python37-x64\\python.exe" + # ENV["PYTHON"] = raw"C:\Python310-x64\python.exe" # example for Windows, "raw" to not have to escape: "C:\\Python310-x64\\python.exe" - # ENV["PYTHON"] = "/usr/bin/python3.7" # example for *nix + # ENV["PYTHON"] = "/usr/bin/python3.10" # example for *nix Pkg.build("PyCall") Note also that you will need to re-run `Pkg.build("PyCall")` if your