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 .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,4 @@ build/
dist/
.CondaPkg/
/jltest.*
uv.lock
1 change: 1 addition & 0 deletions docs/src/releasenotes.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
## Unreleased
* Added `PYTHON_JULIACALL_HEAP_SIZE_HINT` option to configure initial Julia heap size.
* `Base.elsize` now defined for `PyArray`.
* JuliaCall now ensures a version of OpenSSL_jll compatible with Python is installed.

## 0.9.24 (2025-01-22)
* Bug fixes.
Expand Down
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.8"
dependencies = ["juliapkg ~=0.1.8"]
dependencies = ["juliapkg ~=0.1.17"]

[tool.hatch.build.targets.wheel]
packages = ["pysrc/juliacall"]
6 changes: 5 additions & 1 deletion pysrc/juliacall/juliapkg-dev.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,15 @@
{
"julia": "~1.6.1, ~1.7, ~1.8, ~1.9, =1.10.0, ^1.10.3",
"julia": "1.6.1 - 1.10.0, ^1.10.3",
"packages": {
"PythonCall": {
"uuid": "6099a3de-0909-46bc-b1f4-468b9a2dfc0d",
"version": "=0.9.24",
"path": "../..",
"dev": true
},
"OpenSSL_jll": {
"uuid": "458c3c95-2e84-50aa-8efc-19380b2a3a95",
"version": "<=python"
}
}
}
6 changes: 5 additions & 1 deletion pysrc/juliacall/juliapkg.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,13 @@
{
"julia": "~1.6.1, ~1.7, ~1.8, ~1.9, =1.10.0, ^1.10.3",
"julia": "1.6.1 - 1.10.0, ^1.10.3",
"packages": {
"PythonCall": {
"uuid": "6099a3de-0909-46bc-b1f4-468b9a2dfc0d",
"version": "=0.9.24"
},
"OpenSSL_jll": {
"uuid": "458c3c95-2e84-50aa-8efc-19380b2a3a95",
"version": "<=python"
}
}
}
Loading