Skip to content

Commit

Permalink
Merge pull request #432 from benjeffery/fix-wheels2
Browse files Browse the repository at this point in the history
Fix Actions versions
  • Loading branch information
benjeffery authored Sep 4, 2024
2 parents 842f022 + 3d28f99 commit 2e3615a
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@ jobs:
- run:
name: Lint Python
command: |
ruff check --line-length 90 tsdate setup.py tests
pre-commit run --all
- save_cache:
key: tsdate-{{ checksum "data/prior_1000df.bak" }}
key: tsdate-{{ checksum "data/prior_1000df.bak" }}
paths:
- data/prior_1000df.bak
- tsdate/prior_1000df.txt
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
python -m build
- name: Upload
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: sdist-wheel
path: dist
Expand All @@ -45,7 +45,7 @@ jobs:
python: [3.8, 3.8, 3.9, "3.10", 3.11]
steps:
- name: Download wheels
uses: actions/download-artifact@v4.1.7
uses: actions/download-artifact@v4
with:
name: sdist-wheel
- name: Set up Python ${{ matrix.python }}
Expand All @@ -71,7 +71,7 @@ jobs:
wordsize: [64]
steps:
- name: Download wheels
uses: actions/download-artifact@v4.1.7
uses: actions/download-artifact@v4
with:
name: sdist-wheel
- name: Set up Python ${{ matrix.python }}
Expand All @@ -96,7 +96,7 @@ jobs:
python: [3.8, 3.9, "3.10", 3.11]
steps:
- name: Download wheels
uses: actions/download-artifact@v4.1.7
uses: actions/download-artifact@v4
with:
name: sdist-wheel
- name: Set up Python
Expand All @@ -122,7 +122,7 @@ jobs:
id-token: write
steps:
- name: Download all
uses: actions/download-artifact@v4.1.7
uses: actions/download-artifact@v4
- name: Move to dist
run: |
mkdir dist
Expand Down

0 comments on commit 2e3615a

Please sign in to comment.