Skip to content

Commit 3138242

Browse files
Fix CI (#227)
* Bump docker/build-push-action from 5 to 6 (#221) Bumps [docker/build-push-action](https://github.com/docker/build-push-action) from 5 to 6. - [Release notes](https://github.com/docker/build-push-action/releases) - [Commits](docker/build-push-action@v5...v6) --- updated-dependencies: - dependency-name: docker/build-push-action dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump actions/configure-pages from 4 to 5 (#222) Bumps [actions/configure-pages](https://github.com/actions/configure-pages) from 4 to 5. - [Release notes](https://github.com/actions/configure-pages/releases) - [Commits](actions/configure-pages@v4...v5) --- updated-dependencies: - dependency-name: actions/configure-pages dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Update book_stable.yml (#225) * Update book_stable.yml * Update test_stable.yml * resolve #224 (#226) * Update test_stable.yml --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 0b3745e commit 3138242

File tree

4 files changed

+5
-3
lines changed

4 files changed

+5
-3
lines changed

.github/workflows/deploy.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
uses: actions/checkout@v4
3939

4040
- name: Setup Pages
41-
uses: actions/configure-pages@v4
41+
uses: actions/configure-pages@v5
4242

4343
- name: Download docs artifact
4444
uses: actions/download-artifact@v4

.github/workflows/publish_docker.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
4646

4747
- name: Build Docker image
48-
uses: docker/build-push-action@v5
48+
uses: docker/build-push-action@v6
4949
with:
5050
context: .
5151
load: true
@@ -56,7 +56,7 @@ jobs:
5656
labels: ${{ steps.meta.outputs.labels }}
5757

5858
- name: Build (arm) and push (amd/arm) Docker image
59-
uses: docker/build-push-action@v5
59+
uses: docker/build-push-action@v6
6060
if: github.event_name == 'push'
6161
with:
6262
context: .

chapter2/ns_code2.ipynb

+1
Original file line numberDiff line numberDiff line change
@@ -651,6 +651,7 @@
651651
" if pressure is not None:\n",
652652
" p_diff[i] -= pressure[0]\n",
653653
" break\n",
654+
"progress.close()\n",
654655
"vtx_u.close()\n",
655656
"vtx_p.close()"
656657
]

chapter2/ns_code2.py

+1
Original file line numberDiff line numberDiff line change
@@ -478,6 +478,7 @@ def __call__(self, x):
478478
if pressure is not None:
479479
p_diff[i] -= pressure[0]
480480
break
481+
progress.close()
481482
vtx_u.close()
482483
vtx_p.close()
483484

0 commit comments

Comments
 (0)