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
Currently appear to be two external dependencies blocking upgrade to 3.11: pytorch and numba
Plan to test against Python 3.11 as soon as these are released
The text was updated successfully, but these errors were encountered:
Update:
Sorry, something went wrong.
Latest numba on github is supposed to support Python 3.11
pip install git+https://github.com/numba/numba.git
But it has llvmlite v0.40.0dev0 as a prerequisite
pip install git+https://github.com/numba/[email protected]
On the mac this has further issues see discussion (here)[https://github.com/cvxgrp/pymde/issues/49]
brew install llvm@11 LLVM_CONFIG="/opt/homebrew/Cellar/llvm@11/11.1.0_4/bin/llvm-config" arch -arm64 python3 -m pip install git+https://github.com/numba/[email protected]
(Note, require llvm@11, the llvmlite build states "Building llvmlite requires LLVM 11.x.x")
But this still fails with a lot of "Undefined symbols for architecture arm64"
Might have to wait a bit longer for a numba release on PyPI
Successfully merging a pull request may close this issue.
Currently appear to be two external dependencies blocking upgrade to 3.11: pytorch and numba
Plan to test against Python 3.11 as soon as these are released
The text was updated successfully, but these errors were encountered: