Skip to content

Commit 1c8c053

Browse files
authored
Merge pull request #258 from mattip/v0.4.16
set version to 0.4.17 and create pp3.*none wheels
2 parents 8b2e17d + 385cccf commit 1c8c053

2 files changed

Lines changed: 3 additions & 5 deletions

File tree

.github/workflows/cibuildwheel.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ jobs:
5454
python-version: 'pypy-3.9'
5555

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

5959
- name: Build wheel
6060
run: |
@@ -71,13 +71,11 @@ jobs:
7171
pypy -m pytest vmprof -v || FAILED=true
7272
pypy -m pytest jitlog -v || FAILED=true
7373
if [ "FAILED" == true ]; then exit 1; fi
74-
# Uh-oh. packaging.tags does not support a pp3-none-any wheel tag.
7574
# The wheel name is something like
7675
# vmprof-0.4.15-py3-none-any.whl
7776
# when it should be
7877
# vmprof-0.4.15-pp3-none-any.whl
79-
# Once https://github.com/pypa/packaging/pull/466 goes in, uncomment
80-
# mv vmprof*-{py3,pp3}-none-any.whl
78+
rename 's/py3/pp3/' vmprof-*.whl
8179
8280
- uses: actions/upload-artifact@v3
8381
with:

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ def run(self):
111111
name='vmprof',
112112
author='vmprof team',
113113
author_email='fijal@baroquesoftware.com',
114-
version="0.4.15",
114+
version="0.4.17",
115115
packages=find_packages(),
116116
description="Python's vmprof client",
117117
long_description='See https://vmprof.readthedocs.org/',

0 commit comments

Comments
 (0)