Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/JuliaPy/PyCall.jl
Browse files Browse the repository at this point in the history
  • Loading branch information
stevengj committed Feb 12, 2020
2 parents d3dd1d1 + 098f51b commit 0bc2f84
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "PyCall"
uuid = "438e738f-606a-5dbb-bf0a-cddfbfd45ab0"
authors = ["Steven G. Johnson <stevenj@mit.edu>", "Yichao Yu <yyc1992@gmail.com>", "Takafumi Arakaki <aka.tkf@gmail.com>", "Simon Kornblith <simon@simonster.com>", "Páll Haraldsson <Pall.Haraldsson@gmail.com>", "Jon Malmaud <malmaud@gmail.com>", "Jake Bolewski <jakebolewski@gmail.com>", "Keno Fischer <keno@alumni.harvard.edu>", "Joel Mason <jobba1@hotmail.com>", "Jameson Nash <vtjnash@gmail.com>", "The JuliaPy development team"]
version = "1.91.2"
version = "1.91.3"

[deps]
Conda = "8f4d0f93-b110-5947-807f-2305c1781a2d"
Expand Down
4 changes: 4 additions & 0 deletions src/pyinit.jl
Original file line number Diff line number Diff line change
Expand Up @@ -181,6 +181,10 @@ function __init__()
else
pyhome = pythonhome_of(current_python())
end
elseif conda && Sys.iswindows()
# some Python modules on Windows need the PATH to include
# Anaconda's Library\bin directory in order to find their DLL files
ENV["PATH"] = Conda.bin_dir(Conda.ROOTENV) * ";" * get(ENV, "PATH", "")
end

Py_SetPythonHome(libpy_handle, pyversion, pyhome)
Expand Down

2 comments on commit 0bc2f84

@stevengj
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator register

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request updated: JuliaRegistries/General/9321

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if Julia TagBot is installed, or can be done manually through the github interface, or via:

git tag -a v1.91.3 -m "<description of version>" 0bc2f841a6e8275b9ef05c89b25463d0779e1ff6
git push origin v1.91.3

Please sign in to comment.