Skip to content

Commit

Permalink
Fix vendor library inclusion (#111)
Browse files Browse the repository at this point in the history
* setup.py: Install the entire vendored ovs library

Without the __init__.py it won't get properly detected.

Signed-off-by: Adrian Moreno <[email protected]>

* README: Remember to use prepare.sh

Signed-off-by: Adrian Moreno <[email protected]>

---------

Signed-off-by: Adrian Moreno <[email protected]>
  • Loading branch information
amorenoz authored Jul 17, 2023
1 parent 4e0bef7 commit 76cb0d9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Latest released version:

From the git checkout

pip install .
./prepare.sh && pip install .

## Enable bash autocomplete

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
keywords="ovs_dbg",
name="ovs_dbg",
packages=find_namespace_packages(
include=["ovs_dbg", "ovs_dbg.ofparse", "ovs_dbg.vendor.ovs.flow"]
include=["ovs_dbg", "ovs_dbg.ofparse", "ovs_dbg.vendor.ovs"]
),
setup_requires=setup_requirements,
scripts=[
Expand Down

0 comments on commit 76cb0d9

Please sign in to comment.