mirror of
https://github.com/Z3Prover/z3
synced 2026-02-22 08:17:37 +00:00
conditionally depend on importlib_resources
In python >= 3.9, it's available as part of the stdlib.
This commit is contained in:
parent
53f89a81c1
commit
f69506e9cf
1 changed files with 1 additions and 1 deletions
|
|
@ -341,7 +341,7 @@ setup(
|
|||
license='MIT License',
|
||||
keywords=['z3', 'smt', 'sat', 'prover', 'theorem'],
|
||||
packages=['z3'],
|
||||
install_requires = ['importlib-resources'],
|
||||
install_requires = ["importlib-resources; python_version < '3.9'"],
|
||||
include_package_data=True,
|
||||
package_data={
|
||||
'z3': [os.path.join('lib', '*'), os.path.join('include', '*.h'), os.path.join('include', 'c++', '*.h')]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue