mirror of
https://github.com/zama-ai/concrete.git
synced 2026-02-10 04:35:03 -05:00
- disable PR automerge on compiler update (too risky) - change init file to be a namespace package - remove version.py (infos can still be retrieved through package meta) this avoids potential conflicts with other packages we release - various fixes for compiler compatibility closes #1272
6 lines
284 B
Python
6 lines
284 B
Python
"""Top level import."""
|
|
# Do not modify, this is to have a compatible namespace package
|
|
# https://packaging.python.org/en/latest/guides/packaging-namespace-packages/
|
|
# #pkg-resources-style-namespace-packages
|
|
__import__("pkg_resources").declare_namespace(__name__) # pragma: no cover
|