mirror of
https://github.com/varun-r-mallya/pylibbpf.git
synced 2026-03-22 13:11:28 +00:00
Compare commits
2 Commits
68f2bc4b9b
...
dependabot
| Author | SHA1 | Date | |
|---|---|---|---|
| 286415323c | |||
| ecd94057b7 |
8
.github/workflows/wheels.yml
vendored
8
.github/workflows/wheels.yml
vendored
@ -25,7 +25,7 @@ jobs:
|
||||
- name: Check metadata
|
||||
run: pipx run twine check dist/*
|
||||
|
||||
- uses: actions/upload-artifact@v5
|
||||
- uses: actions/upload-artifact@v7
|
||||
with:
|
||||
name: cibw-sdist
|
||||
path: dist/*.tar.gz
|
||||
@ -44,7 +44,7 @@ jobs:
|
||||
submodules: recursive
|
||||
|
||||
- name: Build wheels
|
||||
uses: pypa/cibuildwheel@v3.3
|
||||
uses: pypa/cibuildwheel@v3.4
|
||||
env:
|
||||
CIBW_PLATFORM: linux
|
||||
CIBW_ARCHS_LINUX: ${{ matrix.arch }}
|
||||
@ -65,7 +65,7 @@ jobs:
|
||||
shell: bash
|
||||
|
||||
- name: Upload wheels
|
||||
uses: actions/upload-artifact@v5
|
||||
uses: actions/upload-artifact@v7
|
||||
with:
|
||||
name: cibw-wheels-linux-${{ matrix.arch }}
|
||||
path: wheelhouse/*.whl
|
||||
@ -82,7 +82,7 @@ jobs:
|
||||
|
||||
steps:
|
||||
- name: Download all artifacts
|
||||
uses: actions/download-artifact@v6
|
||||
uses: actions/download-artifact@v8
|
||||
with:
|
||||
pattern: cibw-*
|
||||
path: dist
|
||||
|
||||
@ -43,4 +43,4 @@ __all__ = [
|
||||
"BpfException",
|
||||
]
|
||||
|
||||
__version__ = "0.0.6"
|
||||
__version__ = "0.0.7"
|
||||
|
||||
@ -10,7 +10,7 @@ build-backend = "setuptools.build_meta"
|
||||
|
||||
[project]
|
||||
name = "pylibbpf"
|
||||
version = "0.0.6"
|
||||
version = "0.0.7"
|
||||
description = "Python Bindings for Libbpf"
|
||||
authors = [
|
||||
{ name = "r41k0u", email = "pragyanshchaturvedi18@gmail.com" },
|
||||
|
||||
@ -2,6 +2,6 @@ import pylibbpf as m
|
||||
|
||||
|
||||
def test_main():
|
||||
assert m.__version__ == "0.0.6"
|
||||
assert m.__version__ == "0.0.7"
|
||||
prog = m.BpfObject("tests/execve2.o", structs={})
|
||||
print(prog)
|
||||
|
||||
Reference in New Issue
Block a user