We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c98fc0c commit 53a2190Copy full SHA for 53a2190
docs/integrations/github_actions.md
@@ -74,9 +74,14 @@ If you want to match versions covered by Black's
74
version: "~= 22.0"
75
```
76
77
-If you want to read the version from `pyproject.toml`, set `use_pyproject` to `true`:
+If you want to read the version from `pyproject.toml`, set `use_pyproject` to `true`.
78
+Note that this requires Python >= 3.11, so using the setup-python action may be
79
+required, for example:
80
81
```yaml
82
+- uses: actions/setup-python@v5
83
+ with:
84
+ python-version: "3.13"
85
- uses: psf/black@stable
86
with:
87
options: "--check --verbose"
0 commit comments