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
> julia --version
julia version 1.8.0-DEV
> python -m juliacall
Traceback (most recent call last):
...
File "/home/lapeyre/code/github/cjdoris/PythonCall/juliacall/semver.py", line 59, in __init__
self.parts = tuple(map(int, src))
ValueError: invalid literal forint() with base 10: '0-DEV'
But, this just ignores the prerelease DEV. And the version is accepted. Also, the string being processed "1.8.0-DEV" does not include the prerelease number. That is:
julia>VERSIONv"1.8.0-DEV.1455"
The text was updated successfully, but these errors were encountered:
PythonCall.jl master branch 05237b2
This appears to have been introduced in EDIT:
cb207dfthe most recent commit.The following prevents the error:
But, this just ignores the prerelease
DEV
. And the version is accepted. Also, the string being processed "1.8.0-DEV" does not include the prerelease number. That is:The text was updated successfully, but these errors were encountered: