Skip to content

Commit e9b7680

Browse files
authored
migrate gh artifact actions to v4 (#20)
* migrate gh artifact actions to v4 from migration guide no breaking changes apply here. * updates pipfile.lock dependency versions * updates CI due to pytest issue see scipy/scipy#22236 * bump to python 3.12 * revert to py3.10
1 parent de4d468 commit e9b7680

File tree

2 files changed

+1854
-1066
lines changed

2 files changed

+1854
-1066
lines changed

.github/workflows/main.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -44,11 +44,11 @@ jobs:
4444
- python: "3.10"
4545
task:
4646
name: "Test"
47-
run: pytest --exitfirst --failed-first
48-
- python: "3.7"
47+
run: pytest --exitfirst --failed-first --assert=plain
48+
- python: "3.8"
4949
task:
50-
name: "Test (3.7)"
51-
run: pytest --exitfirst --failed-first
50+
name: "Test (3.8)"
51+
run: pytest --exitfirst --failed-first --assert=plain
5252
steps:
5353
- uses: actions/checkout@v3
5454

@@ -65,7 +65,7 @@ jobs:
6565
6666
- name: Upload package distribution files
6767
if: matrix.task.name == 'Build'
68-
uses: actions/upload-artifact@v3
68+
uses: actions/upload-artifact@v4
6969
with:
7070
name: package
7171
path: dist
@@ -99,7 +99,7 @@ jobs:
9999
echo "TAG=${GITHUB_REF#refs/tags/}" >> $GITHUB_ENV
100100
101101
- name: Download package distribution files
102-
uses: actions/download-artifact@v3
102+
uses: actions/download-artifact@v4
103103
with:
104104
name: package
105105
path: dist

0 commit comments

Comments
 (0)