PythonCall.jl icon indicating copy to clipboard operation
PythonCall.jl copied to clipboard

Python and Julia in harmony.

Results 200 PythonCall.jl issues
Sort by recently updated
recently updated
newest added

The following test was made in a .ipynb notebook in VS code. ![Snipaste_2022-10-17_17-22-36](https://user-images.githubusercontent.com/20141984/196140852-624be2bd-35cd-486d-ad01-a3888cb5b7df.png) We see that `println` has no output at all, while `display` leads to an error. - Julia...

Now that PySR has switched to PythonCall.jl, here is the promised integration test :) I'm installing and running it in a separate virtualenv so as to not interfere with anything.

It took me some digging through the issues to discover that the python import ```python from x import f as g ``` can be translated in julia to ```julia using...

**Affects:** Both **Describe the bug** I would like to use a custom sysimage of our julia package which has PythonCall.jl as a dependency. The image builds fine, and is useable...

bug

Currently `similar` will return an array of a different type: ```python from juliacall import Main as jl import numpy as np x = np.random.randn(5) y = jl.similar(x) print(jl.typeof(x)) # PyArray{Float64,...

enhancement

I am using PythonCall to define a Python interface from julia. It happens that I want to precompile Python code using Python's `compile` function and then send it to a...

enhancement

Currently the test suite is very small, most notably the juliacall suite: https://github.com/JuliaPy/PythonCall.jl/blob/main/pytest/test_all.py which is only 19 lines long. I am very worried about reliability issues from this and whether...

**Affects:** JuliaCall **Describe the bug** I'm getting weird crashes when I transfer a list from Python to Julia. This does not happen with PyJulia. Minimum working example below. ``` >>>...

bug

**Affects:** JuliaCall **Describe the bug** Related to https://github.com/JuliaPy/PythonCall.jl/issues/219. There's currently a scenario with no possible workaround other than forcing a downstream user to set up environment variables to avoid a...

bug

I see you added to possibility opt-in. It has bugged my that Julia does run it by default, but I realize it's a breaking change (hypothetically, not in practice for...

enhancement