You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I believe that the regex expression Regex::new(r" -(\d).(\d)-(\d+)(?: .*)?") at this line is responsible for that.
Shouldn't it be Regex::new(r" -(\d).(\d+)-(\d+)(?: .*)?")?.
I don't thing this is relevant, but I'm using pip version 21.1.3 and pyo3 bindings.
By the way, thanks for the amazing work!
The text was updated successfully, but these errors were encountered:
bernardelli
changed the title
Maturin is not able to auto-discoverPython 3.10 on Windows
Maturin is not able to auto-discover Python 3.10 on Windows
Sep 1, 2021
Auto-discover can't find Python 3.10 on Windows.
I believe that the regex expression
Regex::new(r" -(\d).(\d)-(\d+)(?: .*)?")
at this line is responsible for that.Shouldn't it be
Regex::new(r" -(\d).(\d+)-(\d+)(?: .*)?")
?.For context, see the script below:
I don't thing this is relevant, but I'm using pip version 21.1.3 and pyo3 bindings.
By the way, thanks for the amazing work!
The text was updated successfully, but these errors were encountered: