Skip to content

Commit 58d122d

Browse files
committed
Try skipping premature install step in publis workflow.
1 parent d3d5ad0 commit 58d122d

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

.github/workflows/publish.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,15 +23,14 @@ jobs:
2323
- name: "Get upstream C library"
2424
run: git submodule update --init
2525
- name: Set up Python ${{ matrix.python-version }}
26-
uses: actions/setup-python@v4.3.0
26+
uses: actions/setup-python@v4
2727
with:
2828
cache: "pip"
2929
python-version: ${{ matrix.python-version }}
3030
- name: Install dependencies
3131
run: |
3232
python -m pip install --upgrade pip setuptools
3333
pip install -r requirements.txt
34-
python setup.py install
3534
- name: Run tests
3635
run: python setup.py test
3736
- name: Build package

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

0 commit comments

Comments
 (0)