We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1700d8b commit c45963bCopy full SHA for c45963b
1 file changed
lib/pythonx/application.ex
@@ -26,7 +26,8 @@ defmodule Pythonx.Application do
26
uv_init_env = Application.compile_env(:pythonx, :uv_init)
27
pyproject_toml = uv_init_env[:pyproject_toml]
28
uv_version = uv_init_env[:uv_version] || Pythonx.Uv.default_uv_version()
29
- opts = [uv_version: uv_version]
+ python = uv_init_env[:python]
30
+ opts = [uv_version: uv_version, python: python]
31
32
if pyproject_toml do
33
Pythonx.Uv.fetch(pyproject_toml, true, opts)
0 commit comments