Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@

## Unreleased
* Bug fix: avoid precompilation cache miss when `check_bounds` option set.
* Bug fix: `juliacall` set the environment variable `JULIA_PYTHONCALL_EXECUTABLE`
instead of `JULIA_PYTHONCALL_EXE`, so child Julia processes resolved a new
CondaPkg environment.

## 0.9.35 (2026-06-08)
* Add option `lib` to JuliaCall. Setting this will skip the discovery subprocess.
Expand Down
2 changes: 1 addition & 1 deletion pysrc/juliacall/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -256,7 +256,7 @@ def args_from_config(config):

# override some environment variables
# we do this here because PythonCall is initialised during jl_init if it is in a sysimg
os.environ['JULIA_PYTHONCALL_EXECUTABLE'] = sys.executable or ''
os.environ['JULIA_PYTHONCALL_EXE'] = sys.executable or ''
os.environ['__JULIA_PYTHONCALL_EMBEDDED_LIBPTR__'] = hex(c.pythonapi._handle)

# initialise julia
Expand Down
Loading