Skip to content

Commit 0a1bf2b

Browse files
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...
1 parent 2728e20 commit 0a1bf2b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,9 +53,9 @@ to the path of the `python` (or `python3` etc.) executable and then re-running `
5353
In Julia:
5454

5555
ENV["PYTHON"] = "... path of the python executable ..."
56-
# ENV["PYTHON"] = raw"C:\Python37-x64\python.exe" # example for Windows, "raw" to not have to escape: "C:\\Python37-x64\\python.exe"
56+
# ENV["PYTHON"] = raw"C:\Python310-x64\python.exe" # example for Windows, "raw" to not have to escape: "C:\\Python310-x64\\python.exe"
5757

58-
# ENV["PYTHON"] = "/usr/bin/python3.7" # example for *nix
58+
# ENV["PYTHON"] = "/usr/bin/python3.10" # example for *nix
5959
Pkg.build("PyCall")
6060

6161
Note also that you will need to re-run `Pkg.build("PyCall")` if your

0 commit comments

Comments
 (0)