File tree Expand file tree Collapse file tree 2 files changed +7
-3
lines changed Expand file tree Collapse file tree 2 files changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -33,13 +33,17 @@ jobs:
33
33
pip install -r requirements.txt
34
34
- name : Run tests
35
35
run : python setup.py test
36
- - name : Build package
36
+ - name : Build wheel
37
+ if : ${{ matrix.os == 'macos-latest' || matrix.os == 'windows-latest' }}
37
38
run : python setup.py bdist_wheel
39
+ - name : Build egg
40
+ if : ${{ matrix.os == 'ubuntu-latest' }}
41
+ run : python setup.py bdist_egg
38
42
- name : Build sdist
39
43
# same source for all versions
40
44
if : ${{ matrix.os == 'macos-latest' && matrix.python-version == '3.10' }}
41
45
run : python setup.py sdist
42
- - name : Publish package on Mac
46
+ - name : Publish package on Mac and Linux
43
47
if : ${{ matrix.os == 'macos-latest' || matrix.os == 'ubuntu-latest' }}
44
48
run : twine upload --skip-existing dist/*
45
49
- name : Publish package on Windows
Original file line number Diff line number Diff line change 56
56
57
57
setup (
58
58
name = 'freesasa' ,
59
- version = '2.2.0-post1 ' ,
59
+ version = '2.2.0.post2 ' ,
60
60
description = 'Calculate solvent accessible surface areas of proteins' ,
61
61
long_description = long_description ,
62
62
author = 'Simon Mitternacht' ,
You can’t perform that action at this time.
0 commit comments