Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ repos:
- id: trailing-whitespace

- repo: https://github.com/codespell-project/codespell
rev: v2.4.1
rev: v2.4.2
hooks:
- id: codespell
args: ["-L", "ned,ist,oder", "--skip", "*.po"]
Expand All @@ -37,7 +37,7 @@ repos:
- id: rst-inline-touching-normal

- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.14.10
rev: v0.15.20
hooks:
- id: ruff-check
- id: ruff-format
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,12 @@ We will have to define two jobs to publish to PyPI
and TestPyPI respectively, and an additional job to
build the distribution packages.

.. important::

Keep the build job separate from the publishing jobs. Building
distributions in a publishing job is unsupported; publishing jobs should
only download the already-built artifacts and upload them.

First, we'll define the job for building the dist packages of
your project and storing them for later use:

Expand Down
Loading