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
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
## Unreleased
* Added `juliacall.TypeValue.__numpy_dtype__` attribute to allow converting Julia types
to the corresponding NumPy dtype, like `numpy.dtype(jl.Int)`.
* JuliaCall now launches Julia with 1 thread by default.
* Bug fixes.

## 0.9.31 (2025-12-17)
Expand Down
2 changes: 1 addition & 1 deletion pysrc/juliacall/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ def args_from_config(config):
CONFIG['opt_optimize'] = choice('optimize', ['0', '1', '2', '3'])[0]
CONFIG['opt_procs'] = int_option('procs', accept_auto=True)[0]
CONFIG['opt_sysimage'] = sysimg = path_option('sysimage', check_exists=True)[0]
CONFIG['opt_threads'] = int_option('threads', accept_auto=True)[0]
CONFIG['opt_threads'] = option('threads', default='1')[0]
CONFIG['opt_warn_overwrite'] = choice('warn_overwrite', ['yes', 'no'])[0]
CONFIG['opt_handle_signals'] = choice('handle_signals', ['yes', 'no'])[0]
CONFIG['opt_startup_file'] = choice('startup_file', ['yes', 'no'])[0]
Expand Down
Loading