mirror of
https://github.com/zama-ai/concrete.git
synced 2026-02-09 03:55:04 -05:00
fix: go back one additional directory
package has been refactored adding compiler/ under concrete/
This commit is contained in:
@@ -19,7 +19,11 @@ def lookup_runtime_lib() -> str:
|
||||
"""
|
||||
# Go up to site-packages level
|
||||
cwd = os.path.abspath(__file__)
|
||||
# to compiler
|
||||
cwd = os.path.abspath(os.path.join(cwd, os.pardir))
|
||||
# to concrete
|
||||
cwd = os.path.abspath(os.path.join(cwd, os.pardir))
|
||||
# to site-packages
|
||||
cwd = os.path.abspath(os.path.join(cwd, os.pardir))
|
||||
package_name = "concrete_compiler"
|
||||
libs_path = os.path.join(cwd, f"{package_name}.libs")
|
||||
|
||||
Reference in New Issue
Block a user