-
Notifications
You must be signed in to change notification settings - Fork 21
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
Supporting more current Python versions #67
Comments
Seems likely that PySCF 2.7 will be released soon. |
Hello @MatthewRHermes , |
Huh, then I wonder why this failed: https://github.com/pyscf/pyscf-forge/actions/runs/10926730007/job/30331284727 |
This is because as you say, you still use python 3.7 in the CI which reached EOL and for which we do not release the wheels anymore. TREXIO 2.5 wheels are compatible with python 3.8+. The error message in the CI is quite clear - the HDF5 backend is not enabled. This has nothing to do with the numpy version because it is due to the fact that pip proceeded to download and install trexio from distribution tarball instead of binary wheel. To help pip find HDF5 at build time - you would need to set two env variables as indicated in Python README. Hope it helps. |
Python 3.10 and 3.12 await deployment of next PySCF patch to pypi
* Update actions: checkout, setup-python, python CI should probably test using the same version(s) of python that the core modules test against. * Enable Python 3.8 test only (#67) Python 3.10 and 3.12 await deployment of next PySCF patch to pypi
We currently only test this module in github actions against Python version 3.7, which is older than any of the Python versions tested in the core modules. We could move that up a little bit, but pretty soon we run into problems:
The text was updated successfully, but these errors were encountered: