We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 36cf67e commit 14689ceCopy full SHA for 14689ce
1 file changed
lib/pythonx.ex
@@ -54,6 +54,14 @@ defmodule Pythonx do
54
> `System.put_env/2` and similar. If you want to mirror certain env
55
> vars, you need to set them on `os.environ` using `Pythonx.eval/2`.
56
57
+ > #### Free-threaded Python {: .info}
58
+ >
59
+ > Since Python 3.14, there is an official free-threaded Python build,
60
+ > which eliminates GIL and its caveats referred to throughout this
61
+ > documentation. To use a free-threaded build, you can specify an
62
+ > appropriate Python version variant using the `:python` option, for
63
+ > example `Pythonx.uv_init(..., python: "3.14t")`.
64
+
65
## Options
66
67
* `:force` - if true, runs with empty project cache. Defaults to `false`.
0 commit comments