-
Notifications
You must be signed in to change notification settings - Fork 1.5k
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
Python bindings: Missing importlib_resources
dependency
#7041
Comments
Python 3.9 and up now use the built-in version thanks to #7042 |
@NikolajBjorner Is z3-4.12.3 only supporting python 3.9 and above? If so, we need |
what is the location to add install_requires? |
If you use |
so pyproject.toml
becomes
? |
I'm not super familiar with pyproject.toml, but it should go under
|
Signed-off-by: Nikolaj Bjorner <[email protected]>
Signed-off-by: Nikolaj Bjorner <[email protected]>
What release fixes this issue? I'm asking because 4.12.4.0 does not appear to fix it. Would be helpful to know if 4.12.5.0 fixes this and when it will be released. We're using Python3.7 and z3-solver is a dependency of a dependency. If a fix is imminent we would wait for it, otherwise we will have to address this in our package. |
The newest version of
z3-solver
on PyPI (v4.12.3.0) is requires the dependencyimportlib_resources
, but it is not specified as a dependency.Thus the z3 bindings for Python isn't working out of the box:
Installing the
importlib_resources
dependency manually fixes the problem:The text was updated successfully, but these errors were encountered: