-
Notifications
You must be signed in to change notification settings - Fork 86
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
Use 1.14.4 as bundled HDF5 #243
base: master
Are you sure you want to change the base?
Conversation
Hitting some bug in hdf5. Need to find a windows machine to find a fix and upstream this |
Wonder if we could git-bisect it in a sane way... |
From
Poorly defined in other words. There is a feature test macro we could set, |
68c5991
to
139027b
Compare
d0606a4
to
b5494a6
Compare
905030b
to
975b18f
Compare
6f9fa95
to
cc340d8
Compare
Would this PR give us a version with chunks_visit? |
@gauteh Yes, this would provide |
Great! Looking forward to this! |
e8b4b32
to
c49f0fd
Compare
7aad547
to
62d3637
Compare
Still some mysterious errors here. On wine |
62d3637
to
503dcbf
Compare
f51bc0a
to
1573f34
Compare
@@ -29,7 +29,7 @@ impl Version { | |||
} | |||
|
|||
pub fn parse(s: &str) -> Option<Self> { | |||
let re = Regex::new(r"^(1)\.(8|10|12|14)\.(\d\d?)(_\d+)?((-|.)(patch)?\d+)?$").ok()?; | |||
let re = Regex::new(r"^(1)\.(8|10|12|14)\.(\d\d?)(_|.\d+)?((-|.)(patch)?\d+)?$").ok()?; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is the .
intended to be escaped \.
? If not, the regex can be shortened. In any case, I now see version strings "1.14.4-2"
.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Could probably simplify it greatly by ignoring everything after number.number.number
Replaces #207
Blocked by HDFGroup/hdf5#3091