diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index 69cef4358..95ffd6531 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -40,7 +40,7 @@ jobs: - name: Upload HTML uses: actions/upload-artifact@v4 with: - name: html + name: html-${{ github.job }}-${{ strategy.job-index }} path: build/sphinx/html - name: Build PDF docs run: | @@ -49,5 +49,5 @@ jobs: - name: Upload PDF uses: actions/upload-artifact@v4 with: - name: pdf-python-${{matrix.python-version}} + name: pdf-python-${{matrix.python-version}}-${{ github.job }}-${{ strategy.job-index }} path: docs/build/latex/nbconvert.pdf diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index a60d9a787..619dfb0f7 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -21,7 +21,7 @@ repos: - id: trailing-whitespace - repo: https://github.com/python-jsonschema/check-jsonschema - rev: 0.27.3 + rev: 0.27.4 hooks: - id: check-github-workflows @@ -81,7 +81,7 @@ repos: - id: rst-inline-touching-normal - repo: https://github.com/astral-sh/ruff-pre-commit - rev: v0.1.9 + rev: v0.2.0 hooks: - id: ruff types_or: [python, jupyter] @@ -90,7 +90,7 @@ repos: types_or: [python, jupyter] - repo: https://github.com/scientific-python/cookie - rev: "2023.12.21" + rev: "2024.01.24" hooks: - id: sp-repo-review additional_dependencies: ["repo-review[cli]"] diff --git a/nbconvert/exporters/slides.py b/nbconvert/exporters/slides.py index 6ae538ce8..e571a90c0 100644 --- a/nbconvert/exporters/slides.py +++ b/nbconvert/exporters/slides.py @@ -172,8 +172,8 @@ def _reveal_url_prefix_default(self): "", help=""" width used to determine the aspect ratio of your presentation. - Use the horizontal pixels available on your inteded presentation - equpment. + Use the horizontal pixels available on your intended presentation + equipment. """, ).tag(config=True) @@ -181,8 +181,8 @@ def _reveal_url_prefix_default(self): "", help=""" height used to determine the aspect ratio of your presentation. - Use the horizontal pixels available on your inteded presentation - equpment. + Use the horizontal pixels available on your intended presentation + equipment. """, ).tag(config=True)