Skip to content

Commit a570ce9

Browse files
committed
publish wheel as manylinux1 wheel
1 parent 3cfe802 commit a570ce9

File tree

4 files changed

+6
-4
lines changed

4 files changed

+6
-4
lines changed

.github/workflows/linux_wheel.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,8 @@ jobs:
2929
pip install setuptools wheel twine
3030
python setup.py bdist_wheel
3131
ls ./dist
32+
for f in ./dist/*linux_x86_64.whl; do mv "$f" "${f%linux_x86_64.whl}manylinux1_x86_64.whl"; done;
33+
ls ./dist
3234
- name: Publish to PyPI
3335
env:
3436
TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }}

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "throttle-server"
3-
version = "0.3.4"
3+
version = "0.3.5"
44
authors = ["Markus Klein"]
55
edition = "2018"
66
license = "MIT"

Changelog.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
Changelog
22
=========
33

4-
0.3.3
4+
0.3.5
55
-----
66

77
* Publish server wheels to pypi
88

9-
0.3.1-3
9+
0.3.1-4
1010
-------
1111

1212
* Test release - no changes

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ def run(self):
9595
setup(
9696
name="throttle-server",
9797
author="Markus klein",
98-
version="0.3.4",
98+
version="0.3.5",
9999
url="https://github.com/pacman82/throttle",
100100
description="Throttle server. Throttle is a http semaphore service, providing"
101101
"semaphores for distributed systems. Packaged as a wheel for the convinience of"

0 commit comments

Comments
 (0)