Skip to content

Commit

Permalink
add wheel install to deployer
Browse files Browse the repository at this point in the history
  • Loading branch information
mozman committed Jul 14, 2022
1 parent fd77e9c commit 2caf820
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions .github/workflows/deploy_source.yml
Expand Up @@ -16,6 +16,7 @@ jobs:
- name: Create source distribution
run: |
python setup.py sdist --formats=zip
pip install wheel
python setup.py bdist_wheel
- name: Upload source package to PyPI
env:
Expand Down
4 changes: 2 additions & 2 deletions svgwrite/version.py
Expand Up @@ -27,5 +27,5 @@
# 1. bug fix release beta0: VERSION = "0.9.1b0"; version = (0, 9, 1, 'b0')
# 2. bug fix release: VERSION = "0.9.2"; version = (0, 9, 2, 'release')

version = (1, 4, 3, 'b0')
__version__ = "1.4.3b0"
version = (1, 4, 3, 'b1')
__version__ = "1.4.3b1"

0 comments on commit 2caf820

Please sign in to comment.