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 docs/pages/guides/style.md
Original file line number Diff line number Diff line change
Expand Up @@ -277,7 +277,7 @@ needed if just set to `["src"]` in Ruff 0.6+. {% rr RF003 %}
> should also set:
>
> ```toml
> target-version = "py38"
> target-version = "py39"
> ```
>
> This selects the minimum version you want to target (primarily for `"UP"` and
Expand Down Expand Up @@ -491,7 +491,7 @@ when clearly better (please always use them, they are faster) if you set
rev: "v3.18.0"
hooks:
- id: pyupgrade
args: ["--py38-plus"]
args: ["--py39-plus"]
```

[pyupgrade]: https://github.com/asottile/pyupgrade
Expand Down
2 changes: 1 addition & 1 deletion {{cookiecutter.project_name}}/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -324,7 +324,7 @@ disallow_incomplete_defs = true

[tool.ruff]
{%- if cookiecutter.backend == "poetry" %}
target-version = "py38"
target-version = "py39"
{%- endif %}

[tool.ruff.lint]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ make_wheels:
entrypoint: ["env", "-u", "DOCKER_HOST"]
command: ["dockerd-entrypoint.sh"]
matrix:
- CIBW_BUILD: ['cp38-*', 'cp39-*', 'cp310-*', 'cp311-*', 'cp312-*']
- CIBW_BUILD: ['cp39-*', 'cp310-*', 'cp311-*', 'cp312-*', 'cp313-*']
CIBW_PLATFORM: ['linux', 'windows'] # 'macos' not supported by CIBW on GitLab CI
variables:
DOCKER_HOST: tcp://docker:2375/
Expand Down