We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
In https://github.com/yorikvanhavre/BIM_Workbench/blob/master/BimPreflight.py Context: from packaging import version cur_version = version.parse(ifcopenshell.version) if type(cur_version) == version.LegacyVersion:
However as per python 3.9 LegacyVersion got removed, which then quietly causes except Exception as e: self.failed(test)
to get thrown.
Ideas: -remove the check on LegacyVersion -test for python <3.9
In this case it looks like a workaround for a problem that wasn't supposed to exist in the first place, haven't looked into this too deeply yet.
For more info see pypa/packaging#530
The text was updated successfully, but these errors were encountered:
367d627
Hopefully fixed now! Thanks for reporting!
Sorry, something went wrong.
No branches or pull requests
In https://github.com/yorikvanhavre/BIM_Workbench/blob/master/BimPreflight.py
Context:
from packaging import version
cur_version = version.parse(ifcopenshell.version)
if type(cur_version) == version.LegacyVersion:
However as per python 3.9 LegacyVersion got removed, which then quietly causes
except Exception as e:
self.failed(test)
to get thrown.
Ideas:
-remove the check on LegacyVersion
-test for python <3.9
In this case it looks like a workaround for a problem that wasn't supposed to exist in the first place, haven't looked into this too deeply yet.
For more info see
pypa/packaging#530
The text was updated successfully, but these errors were encountered: