Skip to content

Commit b46a58f

Browse files
committed
Build egg for Linux #33.
1 parent 1e5a255 commit b46a58f

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

.github/workflows/publish.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,13 +33,17 @@ jobs:
3333
pip install -r requirements.txt
3434
- name: Run tests
3535
run: python setup.py test
36-
- name: Build package
36+
- name: Build wheel
37+
if: ${{ matrix.os == 'macos-latest' || matrix.os == 'windows-latest' }}
3738
run: python setup.py bdist_wheel
39+
- name: Build egg
40+
if: ${{ matrix.os == 'ubuntu-latest' }}
41+
run: python setup.py bdist_egg
3842
- name: Build sdist
3943
# same source for all versions
4044
if: ${{ matrix.os == 'macos-latest' && matrix.python-version == '3.10' }}
4145
run: python setup.py sdist
42-
- name: Publish package on Mac
46+
- name: Publish package on Mac and Linux
4347
if: ${{ matrix.os == 'macos-latest' || matrix.os == 'ubuntu-latest' }}
4448
run: twine upload --skip-existing dist/*
4549
- name: Publish package on Windows

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-post1',
59+
version= '2.2.0.post2',
6060
description='Calculate solvent accessible surface areas of proteins',
6161
long_description=long_description,
6262
author='Simon Mitternacht',

0 commit comments

Comments
 (0)