Skip to content

Commit 1e5a255

Browse files
committed
Add Ubuntu to matrix in publish workflow.
1 parent c8846ae commit 1e5a255

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
TWINE_PASSWORD: ${{ secrets.PYPI_API_TOKEN }}
1212
strategy:
1313
matrix:
14-
os: [macos-latest, windows-latest] # we'll use the sdist for linux
14+
os: [macos-latest, windows-latest, ubuntu-latest] # we'll use the sdist for linux
1515
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
1616
exclude:
1717
- os: macos-latest
@@ -40,7 +40,7 @@ jobs:
4040
if: ${{ matrix.os == 'macos-latest' && matrix.python-version == '3.10' }}
4141
run: python setup.py sdist
4242
- name: Publish package on Mac
43-
if: ${{ matrix.os == 'macos-latest' }}
43+
if: ${{ matrix.os == 'macos-latest' || matrix.os == 'ubuntu-latest' }}
4444
run: twine upload --skip-existing dist/*
4545
- name: Publish package on Windows
4646
if: ${{ matrix.os == 'windows-latest' }}

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@
5656

5757
setup(
5858
name='freesasa',
59-
version= '2.2.0',
59+
version= '2.2.0-post1',
6060
description='Calculate solvent accessible surface areas of proteins',
6161
long_description=long_description,
6262
author='Simon Mitternacht',

0 commit comments

Comments
 (0)