Skip to content

Commit 7449fcf

Browse files
committed
python: [FIX] fix dependencies
1 parent 0b67453 commit 7449fcf

File tree

4 files changed

+7
-2
lines changed

4 files changed

+7
-2
lines changed

ext/libnfb_ext_python/setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,4 +24,5 @@
2424
),
2525
py_modules=["libnfb_ext_python"],
2626
packages=find_namespace_packages(include=["nfb.*"]),
27+
install_requires=['nfb'],
2728
)

pynfb/setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,4 +31,5 @@
3131
package_data = {
3232
'nfb': ['*.pxd'],
3333
},
34+
install_requires=['fdt'],
3435
)

python/nfb-tools/pyproject.toml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
11
[project]
22
name = "nfbtools"
33
version = "0.2.0"
4-
dependencies = ["pyyaml"]
4+
dependencies = [
5+
"nfb",
6+
"pyyaml",
7+
]
58

69
[project.scripts]
710
nfb-meter = "nfbmeter.nfbmeter:main"

python/nfb-tools/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
],
2020
},
2121
install_requires=[
22-
"fdt",
22+
"nfb",
2323
"pyyaml",
2424
]
2525
)

0 commit comments

Comments
 (0)