Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
31 lines
809 B
Diff
31 lines
809 B
Diff
diff --git a/setup.py b/setup.py
|
|
index c0c5c03..6373a2a 100755
|
|
--- a/setup.py
|
|
+++ b/setup.py
|
|
@@ -71,15 +71,6 @@ setup(
|
|
license=LICENSE,
|
|
url="https://github.com/pytries/marisa-trie",
|
|
classifiers=CLASSIFIERS,
|
|
- libraries=[
|
|
- (
|
|
- "libmarisa-trie",
|
|
- {
|
|
- "sources": MARISA_FILES,
|
|
- "include_dirs": [MARISA_SOURCE_DIR, MARISA_INCLUDE_DIR],
|
|
- },
|
|
- )
|
|
- ],
|
|
ext_modules=[
|
|
Extension(
|
|
"marisa_trie",
|
|
@@ -94,7 +85,8 @@ setup(
|
|
"src/std_iostream.cpp",
|
|
"src/trie.cpp",
|
|
],
|
|
- include_dirs=[MARISA_INCLUDE_DIR],
|
|
+ include_dirs=["@marisa@/include"],
|
|
+ libraries=["marisa"],
|
|
)
|
|
],
|
|
python_requires=">=3.8",
|