Skip to content

Commit 2be33fd

Browse files
authored
docs (#345)
Co-authored-by: Christopher Doris <github.com/cjdoris>
1 parent a3b9095 commit 2be33fd

File tree

2 files changed

+9
-0
lines changed

2 files changed

+9
-0
lines changed

Diff for: docs/src/juliacall.md

+1
Original file line numberDiff line numberDiff line change
@@ -114,6 +114,7 @@ be configured in two ways:
114114
| `-X juliacall-compile=<yes\|no\|all\|min>` | `PYTHON_JULIACALL_COMPILE=<yes\|no\|all\|min>` | Enable or disable JIT compilation. |
115115
| `-X juliacall-compiled-modules=<yes\|no>` | `PYTHON_JULIACALL_COMPILED_MODULES=<yes\|no>` | Enable or disable incrementally compiling modules. |
116116
| `-X juliacall-depwarn=<yes\|no\|error>` | `PYTHON_JULIACALL_DEPWARN=<yes\|no\|error>` | Enable or disable deprecation warnings. |
117+
| `-X juliacall-handle-signals=<yes\|no>` | `PYTHON_JULIACALL_HANDLE_SIGNALS=<yes\|no>` | Enable or disable Julia signal handling. |
117118
| `-X juliacall-inline=<yes\|no>` | `PYTHON_JULIACALL_INLINE=<yes\|no>` | Enable or disable inlining. |
118119
| `-X juliacall-min-optlevel=<0\|1\|2\|3>` | `PYTHON_JULIACALL_MIN_OPTLEVEL=<0\|1\|2\|3>` | Optimization level. |
119120
| `-X juliacall-optimize=<0\|1\|2\|3>` | `PYTHON_JULIACALL_OPTIMIZE=<0\|1\|2\|3>` | Minimum optimization level. |

Diff for: docs/src/releasenotes.md

+8
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# Release Notes
22

3+
## 0.9.14 (Unreleased)
4+
* Wrapped Julia values support truthiness (`__bool__`) better: all values are true, except
5+
for zero numbers and empty arrays, dicts and sets.
6+
* JuliaCall now supports the Julia `--handle-signals` option. Setting this to `yes` allows
7+
allocating multithreaded Julia code to be called from JuliaCall without segfaulting. The
8+
default is `no` while compatibility concerns are investigated, and may be changed to `yes`
9+
in a future release.
10+
311
## 0.9.13 (2023-05-14)
412
* Conversion to wrapper types `PyList`, `PySet`, `PyDict` or `PyIterable` now default to
513
having element type `Any` instead of `Py`.

0 commit comments

Comments
 (0)