Skip to content

Commit

Permalink
Merge pull request #258 from mattip/v0.4.16
Browse files Browse the repository at this point in the history
set version to 0.4.17 and create pp3.*none wheels
  • Loading branch information
mattip committed Dec 31, 2023
2 parents 8b2e17d + 385cccf commit 1c8c053
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
6 changes: 2 additions & 4 deletions .github/workflows/cibuildwheel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ jobs:
python-version: 'pypy-3.9'

- name: Install system libraries
run: sudo apt install -y libunwind-dev libelf-dev libdwarf-dev
run: sudo apt install -y libunwind-dev libelf-dev libdwarf-dev rename

- name: Build wheel
run: |
Expand All @@ -71,13 +71,11 @@ jobs:
pypy -m pytest vmprof -v || FAILED=true
pypy -m pytest jitlog -v || FAILED=true
if [ "FAILED" == true ]; then exit 1; fi
# Uh-oh. packaging.tags does not support a pp3-none-any wheel tag.
# The wheel name is something like
# vmprof-0.4.15-py3-none-any.whl
# when it should be
# vmprof-0.4.15-pp3-none-any.whl
# Once https://github.com/pypa/packaging/pull/466 goes in, uncomment
# mv vmprof*-{py3,pp3}-none-any.whl
rename 's/py3/pp3/' vmprof-*.whl
- uses: actions/upload-artifact@v3
with:
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ def run(self):
name='vmprof',
author='vmprof team',
author_email='fijal@baroquesoftware.com',
version="0.4.15",
version="0.4.17",
packages=find_packages(),
description="Python's vmprof client",
long_description='See https://vmprof.readthedocs.org/',
Expand Down

0 comments on commit 1c8c053

Please sign in to comment.