Skip to content

Commit

Permalink
Version bump; attempt to fix build workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
RalfG committed Jul 9, 2024
1 parent a0f3d7f commit 14fd732
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 8 deletions.
10 changes: 3 additions & 7 deletions .github/workflows/build_and_publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,14 +29,14 @@ jobs:
- uses: actions/upload-artifact@v4
with:
name: dist-source
path: dist/*.tar.gz
path: dist

build-wheels:
name: Build wheels on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-13, macos-14] # macos-13 for intel, macos-14 for apple silicon
os: [ubuntu-latest, windows-latest, macos-13, macos-14] # macos-13 for intel, macos-14 for apple silicon
steps:
- uses: actions/checkout@v4
with:
Expand All @@ -56,7 +56,7 @@ jobs:
- uses: actions/upload-artifact@v4
with:
name: dist-${{ matrix.os }}
path: dist/ms2pip-*.whl
path: dist

publish-to-pypi:
needs: [build-sdist, build-wheels]
Expand All @@ -68,9 +68,5 @@ jobs:
id-token: write
steps:
- uses: actions/download-artifact@v4
with:
pattern: dist-*
merge-multiple: true

- name: Publish to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
2 changes: 1 addition & 1 deletion ms2pip/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# isort: skip_file
"""MS2PIP: Accurate and versatile peptide fragmentation spectrum prediction."""

__version__ = "4.0.0-dev13"
__version__ = "4.0.0-dev14"

from warnings import filterwarnings

Expand Down

0 comments on commit 14fd732

Please sign in to comment.