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
|
|
||
| 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.
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.
Could probably simplify it greatly by ignoring everything after number.number.number
Replaces #207
Blocked by HDFGroup/hdf5#3091