Skip to content

Commit 81f2c8b

Browse files
authored
Merge pull request #33 from rochisha0/action-tools
Update versions of action tools
2 parents 65beb6a + 82e4e25 commit 81f2c8b

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

.github/workflows/build.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ jobs:
4646
OVERRIDE_VERSION: ${{ github.event.inputs.override_version }}
4747

4848
steps:
49-
- uses: actions/checkout@v3
49+
- uses: actions/checkout@v4
5050

5151
- uses: actions/setup-python@v4
5252
name: Install Python
@@ -68,7 +68,7 @@ jobs:
6868
# dependencies are specified by our setup code.
6969
python -m build --sdist .
7070
71-
- uses: actions/upload-artifact@v3
71+
- uses: actions/upload-artifact@v4
7272
with:
7373
name: sdist
7474
path: dist/*.tar.gz
@@ -83,7 +83,7 @@ jobs:
8383
OVERRIDE_VERSION: ${{ github.event.inputs.override_version }}
8484

8585
steps:
86-
- uses: actions/checkout@v3
86+
- uses: actions/checkout@v4
8787

8888
- uses: actions/setup-python@v4
8989
name: Install Python
@@ -105,7 +105,7 @@ jobs:
105105
# dependencies are specified by our setup code.
106106
python -m build --wheel --outdir wheelhouse .
107107
108-
- uses: actions/upload-artifact@v3
108+
- uses: actions/upload-artifact@v4
109109
with:
110110
name: wheels
111111
path: ./wheelhouse/*.whl
@@ -124,7 +124,7 @@ jobs:
124124

125125
steps:
126126
- name: Download build artifacts to local runner
127-
uses: actions/download-artifact@v3
127+
uses: actions/download-artifact@v4
128128

129129
- uses: actions/setup-python@v4
130130
name: Install Python

.github/workflows/build_documentation.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
runs-on: ubuntu-latest
1010

1111
steps:
12-
- uses: actions/checkout@v3
12+
- uses: actions/checkout@v4
1313

1414
- uses: actions/setup-python@v4
1515
name: Install Python
@@ -39,7 +39,7 @@ jobs:
3939
# -T : display a full traceback if a Python exception occurs
4040
4141
- name: Upload built files
42-
uses: actions/upload-artifact@v3
42+
uses: actions/upload-artifact@v4
4343
with:
4444
name: qutip_qtrl_html_docs
4545
path: doc/_build/html/*

doc/changelog.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Changelog
33
*********
44

55
Version 0.1.4 (February 10, 2025)
6-
+++++++++++++++++++++++++++++
6+
+++++++++++++++++++++++++++++++++
77

88
This patch implements changes necessary to support numpy v2.
99

0 commit comments

Comments
 (0)