Skip to content

Commit 0d569be

Browse files
authored
Merge pull request #8 from OpenNFT/fix-upload-artifacts
Fix artifact names for macos and windows
2 parents 6073ce8 + 3ce3899 commit 0d569be

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/build-publish.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ jobs:
5858
- name: Upload wheels
5959
uses: actions/upload-artifact@v4
6060
with:
61-
name: macos-wheels
61+
name: "macos-wheels-${{ matrix.python-version }}"
6262
path: dist/*.whl
6363
overwrite: true
6464

@@ -94,7 +94,7 @@ jobs:
9494
- name: Upload wheels
9595
uses: actions/upload-artifact@v4
9696
with:
97-
name: windows-wheels
97+
name: "windows-wheels-${{ matrix.python-version }}"
9898
path: dist/*.whl
9999
overwrite: true
100100

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Python adaptation of SPM functions for real-time fMRI analysis
99

1010
## Installing
1111

12-
Python 3.8 or above is supported.
12+
Python 3.11 or above is supported.
1313

1414
```
1515
pip install python-rtspm

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "python-rtspm"
3-
version = "0.2.15"
3+
version = "0.2.16"
44
description = "Python adaptation of SPM functions for real-time fMRI analysis"
55
authors = ["OpenNFT Team <[email protected]>"]
66
license = "GPL-3.0"

0 commit comments

Comments
 (0)