-
Notifications
You must be signed in to change notification settings - Fork 5
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
pycall api update #20
Comments
I tried to use PyCall 1.90.0 but I get errors when I do ENS=pyimport("sklearn.ensemble") to replace @pyimport sklearn.ensemble as ENS. Any idea? |
never mind. it seems a dependency issue in my scikit-learn installation. |
See https://github.com/JuliaPy/PyCall.jl#using-pycall-from-julia-modules about importing modules in a precompile-safe way. |
finished upgrading to PyCall 1.90.0 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
PyCall 1.90.0 is now released, which change
o[:foo]
ando["foo"]
too.foo
ando."foo"
, respectively, for python objectso
; see also JuliaPy/PyCall.jl#629.The old
getindex
methods still work but are deprecated, so you'll want to put out a new release that uses the new methods and REQUIREs PyCall 1.90.0 to avoid having zillions of deprecation messages.The text was updated successfully, but these errors were encountered: