Skip to content

Commit

Permalink
Move to setuptools so we can use bdist_wheel
Browse files Browse the repository at this point in the history
  • Loading branch information
Nick Mooney committed Mar 13, 2020
1 parent 88f83be commit 2c2c9f7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,5 +27,5 @@ jobs:
TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }}
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
run: |
python setup.py sdist
python setup.py sdist bdist_wheel
twine upload dist/*
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import os
import re

from distutils.core import setup
from setuptools import setup


HERE = os.path.abspath(os.path.dirname(__file__))
Expand Down

0 comments on commit 2c2c9f7

Please sign in to comment.