We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1888681 commit fed6af1Copy full SHA for fed6af1
pyproject.toml
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
5
[project]
6
name = "pythonbpf"
7
-version = "0.1.6"
+version = "0.1.7"
8
description = "Reduced Python frontend for eBPF"
9
authors = [
10
{ name = "r41k0u", email="[email protected]" },
@@ -29,7 +29,7 @@ license = {text = "Apache-2.0"}
29
requires-python = ">=3.10"
30
31
dependencies = [
32
- "llvmlite",
+ "llvmlite>=0.45",
33
"astpretty",
34
"pylibbpf"
35
]
pythonbpf/codegen.py
@@ -25,7 +25,7 @@
25
26
logger: Logger = logging.getLogger(__name__)
27
28
-VERSION = "v0.1.6"
+VERSION = "v0.1.7"
def finalize_module(original_str):
0 commit comments