2 Commits

Author SHA1 Message Date
286415323c Bump the actions group across 1 directory with 3 updates
Bumps the actions group with 3 updates in the / directory: [actions/upload-artifact](https://github.com/actions/upload-artifact), [pypa/cibuildwheel](https://github.com/pypa/cibuildwheel) and [actions/download-artifact](https://github.com/actions/download-artifact).


Updates `actions/upload-artifact` from 5 to 7
- [Release notes](https://github.com/actions/upload-artifact/releases)
- [Commits](https://github.com/actions/upload-artifact/compare/v5...v7)

Updates `pypa/cibuildwheel` from 3.3 to 3.4
- [Release notes](https://github.com/pypa/cibuildwheel/releases)
- [Changelog](https://github.com/pypa/cibuildwheel/blob/main/docs/changelog.md)
- [Commits](https://github.com/pypa/cibuildwheel/compare/v3.3...v3.4)

Updates `actions/download-artifact` from 6 to 8
- [Release notes](https://github.com/actions/download-artifact/releases)
- [Commits](https://github.com/actions/download-artifact/compare/v6...v8)

---
updated-dependencies:
- dependency-name: actions/upload-artifact
  dependency-version: '7'
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: actions
- dependency-name: pypa/cibuildwheel
  dependency-version: '3.4'
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: actions
- dependency-name: actions/download-artifact
  dependency-version: '8'
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: actions
...

Signed-off-by: dependabot[bot] <support@github.com>
2026-03-09 01:46:24 +00:00
ecd94057b7 bump version
Signed-off-by: varun-r-mallya <varunrmallya@gmail.com>
2025-11-30 05:46:16 +05:30
4 changed files with 7 additions and 7 deletions

View File

@ -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

View File

@ -43,4 +43,4 @@ __all__ = [
"BpfException",
]
__version__ = "0.0.6"
__version__ = "0.0.7"

View File

@ -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" },

View File

@ -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)