Skip to content

Commit

Permalink
Make sure the release build will succeed (#72)
Browse files Browse the repository at this point in the history
  • Loading branch information
jwiggins authored Feb 20, 2021
1 parent 1c41492 commit 2573ed3
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ jobs:
TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }}
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
run: |
python -m twine check --strict dist/*.tar.gz
python -m twine upload dist/*.tar.gz
edm run -- python -m twine check dist/*.tar.gz
edm run -- python -m twine upload dist/*.tar.gz
build-wheel-linux:
runs-on: ubuntu-latest
Expand All @@ -57,5 +57,5 @@ jobs:
TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }}
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
run: |
python -m twine check --strict dist/*-manylinux*.whl
python -m twine check dist/*-manylinux*.whl
python -m twine upload dist/*-manylinux*.whl
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,9 +62,10 @@ def configuration(parent_package='', top_path=None):
version='1.1.1',
description='Anti-Grain Geometry for Python 3 with Cython',
long_description=long_description,
long_description_content_type='text/x-rst',
url='https://github.com/celiagg/celiagg',
classifiers=[
'Development Status :: 4 - Beta',
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
Expand Down

0 comments on commit 2573ed3

Please sign in to comment.