-
Notifications
You must be signed in to change notification settings - Fork 31
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
Build fixes #126
base: master
Are you sure you want to change the base?
Build fixes #126
Conversation
Update from Master repo
Repo Update
3 similar comments
It's pretty critical to have try:
from qinfer.version import version as __version__
except ImportError:
__version__ = '<unknown>' That would break a few things based on version comparisons, but if one uses >>> LooseVersion('<unknown>') < LooseVersion('1.0')
False
>>> LooseVersion('<unknown>') > LooseVersion('1.0')
True As for build breakages, I'm seeing some builds failing due to QuTiP 4.1 now requiring a C++ compiler, such that we do need to fix those builds, but is there a specific build that you saw break due to |
No description provided.