-
Notifications
You must be signed in to change notification settings - Fork 62
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
load("bin") broken by drop of DataType mutable field #408
Comments
You should be able to change Line 243 in 8777d73
|
I was able to fix this in 1.7 by doing exactly what you suggested. I know the fix is microscopic, but I'm happy to submit a PR with this. I also added
So that it will still run in older versions of Julia. Could leave that in or cut it. Not sure how much backwards compatibility is a priority. |
A PR would be much appreciated! 1.6 is the new LTS, so I would potentially just set the Julia compat bound in the Project.toml to 1.6. Also, a better way to compare versions is probably |
Oh, yeah, that's a way better comparison! I'll get the PR in shortly. Thanks for your help! |
I am trying to load a dataset from a bin directory for some out-of-core processing. However, when I run
bintbl = load("bin")
, I get:I believe this is related to this issue noting that in Julia 1.7, DataType dropped the field mutable which broke BSON.jl.
I'm not the most advanced Julia user, so I could just be making an error myself. So I apologize if this is just me!
The text was updated successfully, but these errors were encountered: