Skip to content

Commit 9fb3ab3

Browse files
manifest fixing for release working
Signed-off-by: varun-r-mallya <[email protected]>
1 parent 596943d commit 9fb3ab3

File tree

3 files changed

+3
-9
lines changed

3 files changed

+3
-9
lines changed

MANIFEST.in

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,6 @@ include README.md LICENSE pybind11/LICENSE
22
graft pybind11/include
33
graft pybind11/tools
44
include LICENSE
5-
recursive-include src *.cpp *.h
6-
recursive-include libbpf/src *.c *.h *.map Makefile
7-
recursive-include libbpf/include *.h
8-
include libbpf/README.md
9-
include libbpf/LICENSE
10-
include libbpf/LICENSE.BSD-2-Clause
11-
include libbpf/LICENSE.LGPL-2.1
125
graft src
6+
graft libbpf
137
global-include CMakeLists.txt *.cmake

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ build-backend = "setuptools.build_meta"
99

1010
[project]
1111
name = "pylibbpf"
12-
version = "0.0.3"
12+
version = "0.0.4"
1313
description = "Python Bindings for Libbpf"
1414
authors = [
1515
{ name = "r41k0u", email = "[email protected]" },

tests/test_basic.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22

33

44
def test_main():
5-
assert m.__version__ == "0.0.3"
5+
assert m.__version__ == "0.0.4"
66
prog = m.BpfProgram("tests/execve2.o")
77
print(prog)

0 commit comments

Comments
 (0)