Skip to content

Commit

Permalink
migrate gh artifact actions to v4 (#20)
Browse files Browse the repository at this point in the history
* 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
  • Loading branch information
msramalho authored Jan 9, 2025
1 parent de4d468 commit e9b7680
Show file tree
Hide file tree
Showing 2 changed files with 1,854 additions and 1,066 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,11 +44,11 @@ jobs:
- python: "3.10"
task:
name: "Test"
run: pytest --exitfirst --failed-first
- python: "3.7"
run: pytest --exitfirst --failed-first --assert=plain
- python: "3.8"
task:
name: "Test (3.7)"
run: pytest --exitfirst --failed-first
name: "Test (3.8)"
run: pytest --exitfirst --failed-first --assert=plain
steps:
- uses: actions/checkout@v3

Expand All @@ -65,7 +65,7 @@ jobs:
- name: Upload package distribution files
if: matrix.task.name == 'Build'
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: package
path: dist
Expand Down Expand Up @@ -99,7 +99,7 @@ jobs:
echo "TAG=${GITHUB_REF#refs/tags/}" >> $GITHUB_ENV
- name: Download package distribution files
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: package
path: dist
Expand Down
Loading

0 comments on commit e9b7680

Please sign in to comment.