manifest fixing for release working

Signed-off-by: varun-r-mallya <varunrmallya@gmail.com>
This commit is contained in:
2025-09-21 15:35:40 +05:30
parent 596943d246
commit 9fb3ab3238
3 changed files with 3 additions and 9 deletions

View File

@ -2,12 +2,6 @@ include README.md LICENSE pybind11/LICENSE
graft pybind11/include
graft pybind11/tools
include LICENSE
recursive-include src *.cpp *.h
recursive-include libbpf/src *.c *.h *.map Makefile
recursive-include libbpf/include *.h
include libbpf/README.md
include libbpf/LICENSE
include libbpf/LICENSE.BSD-2-Clause
include libbpf/LICENSE.LGPL-2.1
graft src
graft libbpf
global-include CMakeLists.txt *.cmake

View File

@ -9,7 +9,7 @@ build-backend = "setuptools.build_meta"
[project]
name = "pylibbpf"
version = "0.0.3"
version = "0.0.4"
description = "Python Bindings for Libbpf"
authors = [
{ name = "r41k0u", email = "pragyanshchaturvedi18@gmail.com" },

View File

@ -2,6 +2,6 @@ import pylibbpf as m
def test_main():
assert m.__version__ == "0.0.3"
assert m.__version__ == "0.0.4"
prog = m.BpfProgram("tests/execve2.o")
print(prog)