Skip to content

Commit 14fd732

Browse files
committed
Version bump; attempt to fix build workflow
1 parent a0f3d7f commit 14fd732

File tree

2 files changed

+4
-8
lines changed

2 files changed

+4
-8
lines changed

.github/workflows/build_and_publish.yml

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -29,14 +29,14 @@ jobs:
2929
- uses: actions/upload-artifact@v4
3030
with:
3131
name: dist-source
32-
path: dist/*.tar.gz
32+
path: dist
3333

3434
build-wheels:
3535
name: Build wheels on ${{ matrix.os }}
3636
runs-on: ${{ matrix.os }}
3737
strategy:
3838
matrix:
39-
os: [ubuntu-latest, windows-latest, macos-13, macos-14] # macos-13 for intel, macos-14 for apple silicon
39+
os: [ubuntu-latest, windows-latest, macos-13, macos-14] # macos-13 for intel, macos-14 for apple silicon
4040
steps:
4141
- uses: actions/checkout@v4
4242
with:
@@ -56,7 +56,7 @@ jobs:
5656
- uses: actions/upload-artifact@v4
5757
with:
5858
name: dist-${{ matrix.os }}
59-
path: dist/ms2pip-*.whl
59+
path: dist
6060

6161
publish-to-pypi:
6262
needs: [build-sdist, build-wheels]
@@ -68,9 +68,5 @@ jobs:
6868
id-token: write
6969
steps:
7070
- uses: actions/download-artifact@v4
71-
with:
72-
pattern: dist-*
73-
merge-multiple: true
74-
7571
- name: Publish to PyPI
7672
uses: pypa/gh-action-pypi-publish@release/v1

ms2pip/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# isort: skip_file
22
"""MS2PIP: Accurate and versatile peptide fragmentation spectrum prediction."""
33

4-
__version__ = "4.0.0-dev13"
4+
__version__ = "4.0.0-dev14"
55

66
from warnings import filterwarnings
77

0 commit comments

Comments
 (0)