Skip to content

JLD2 conversion #411

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Draft
wants to merge 7 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from 1 commit
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
Next Next commit
package extension for JLD2
  • Loading branch information
Christopher Doris committed Nov 4, 2023
commit d4122c381afcb287ce3983bd9be360d8a66f65d5
7 changes: 7 additions & 0 deletions Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,17 @@ Tables = "1"
UnsafePointers = "1"
julia = "1.6.1"

[extensions]
JLD2Ext = "JLD2"

[extras]
Aqua = "4c88cf16-eb10-579e-8560-4a9242c79595"
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
JLD2 = "033835bb-8acc-5ee8-8aae-3f567f8a3819"
TestItemRunner = "f8b46487-2199-4994-9208-9a1283c18c0a"

[targets]
test = ["Aqua", "Test", "TestItemRunner"]

[weakdeps]
JLD2 = "033835bb-8acc-5ee8-8aae-3f567f8a3819"
6 changes: 6 additions & 0 deletions ext/JLD2Ext.jl
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
module JLD2Ext

using JLD2
using PythonCall

end