Skip to content

Commit

Permalink
publish wheel as manylinux1 wheel
Browse files Browse the repository at this point in the history
  • Loading branch information
pacman82 committed Apr 28, 2020
1 parent 3cfe802 commit a570ce9
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 4 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/linux_wheel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,8 @@ jobs:
pip install setuptools wheel twine
python setup.py bdist_wheel
ls ./dist
for f in ./dist/*linux_x86_64.whl; do mv "$f" "${f%linux_x86_64.whl}manylinux1_x86_64.whl"; done;
ls ./dist
- name: Publish to PyPI
env:
TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }}
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "throttle-server"
version = "0.3.4"
version = "0.3.5"
authors = ["Markus Klein"]
edition = "2018"
license = "MIT"
Expand Down
4 changes: 2 additions & 2 deletions Changelog.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
Changelog
=========

0.3.3
0.3.5
-----

* Publish server wheels to pypi

0.3.1-3
0.3.1-4
-------

* Test release - no changes
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ def run(self):
setup(
name="throttle-server",
author="Markus klein",
version="0.3.4",
version="0.3.5",
url="https://github.com/pacman82/throttle",
description="Throttle server. Throttle is a http semaphore service, providing"
"semaphores for distributed systems. Packaged as a wheel for the convinience of"
Expand Down

0 comments on commit a570ce9

Please sign in to comment.