Skip to content
This repository was archived by the owner on Feb 26, 2025. It is now read-only.

Commit

Permalink
ci: bump artifact action (#8)
Browse files Browse the repository at this point in the history
  • Loading branch information
matz-e authored Sep 4, 2024
1 parent 35b40ab commit 4732fb4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
python -m pip install build
python -m build
- name: Store sdist as artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: dist
path: dist/*.tar.gz
Expand All @@ -39,7 +39,7 @@ jobs:
with:
python-version: 3.12
- name: Download artifacts produced during the build_wheels and build_sdist jobs
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: dist
path: dist/
Expand Down Expand Up @@ -68,7 +68,7 @@ jobs:

steps:
- name: Download artifacts produced by the build_sdist job
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: dist
path: dist/
Expand Down
2 changes: 1 addition & 1 deletion fz_td_recipe/property.py
Original file line number Diff line number Diff line change
Expand Up @@ -683,7 +683,7 @@ def to_matrix(self, values: Dict[str, List[str]]) -> np.array:
>>> # The last rule matches Bar/Spam
>>> idx = m[rules.pathway_index({'toMType': 'Bar', 'toRegion': 'Spam'}, values)]
>>> idx
2
np.uint32(2)
>>> rules[idx]
<rule fromMType="*" toMType="Bar" toRegion="Spam" />
"""
Expand Down

0 comments on commit 4732fb4

Please sign in to comment.