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
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ classifiers = [
"Operating System :: OS Independent",
]
requires-python = ">=3.10, <4"
dependencies = ["juliapkg >=0.1.21, <0.2"]
dependencies = ["juliapkg >=0.1.24, <0.2"]

[dependency-groups]
dev = [
Expand Down
2 changes: 2 additions & 0 deletions pysrc/juliacall/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -201,6 +201,8 @@ def args_from_config(config):
# Find the Julia executable and project
CONFIG['exepath'] = exepath = juliapkg.executable()
CONFIG['project'] = project = juliapkg.project()
if libpath is None:
CONFIG['libpath'] = libpath = juliapkg.libjulia()
else:
raise Exception("Both PYTHON_JULIACALL_PROJECT and PYTHON_JULIACALL_EXE must be set together, not only one of them.")
if (libpath is not None) and (exepath is None):
Expand Down
Loading