Skip to content

Commit 48625fd

Browse files
committed
Fixed actions.
1 parent a93496c commit 48625fd

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/docs-publish.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
docs-folder: "docs/"
2020

2121
- name: Saves the HTML build documentation
22-
uses: actions/upload-artifact@v2
22+
uses: actions/upload-artifact@v4
2323
with:
2424
path: docs/build/html/
2525

.github/workflows/pytest-cover-run.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
runs-on: ubuntu-latest
1717
strategy:
1818
matrix:
19-
python-version: [3.7, 3.8, 3.9, '3.10']
19+
python-version: [3.8, 3.9, "3.10", "3.11", "3.12"]
2020
steps:
2121
- name: Checks repo out
2222
uses: actions/checkout@v2
@@ -26,7 +26,7 @@ jobs:
2626
python-version: ${{ matrix.python-version }}
2727
- name: Install testing depedencies
2828
run: |
29-
python -m pip install --upgrade pip
29+
python -m pip install --upgrade pip setuptools wheel
3030
pip install .
3131
pip install -r tests/requirements.txt
3232
- name: Run PyTest

0 commit comments

Comments
 (0)