Skip to content

Commit b7cc161

Browse files
authored
chore: remove a few more references to Python 3.8 (#513)
Signed-off-by: Henry Schreiner <henryschreineriii@gmail.com>
1 parent d678906 commit b7cc161

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

docs/pages/guides/style.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -277,7 +277,7 @@ needed if just set to `["src"]` in Ruff 0.6+. {% rr RF003 %}
277277
> should also set:
278278
>
279279
> ```toml
280-
> target-version = "py38"
280+
> target-version = "py39"
281281
> ```
282282
>
283283
> This selects the minimum version you want to target (primarily for `"UP"` and
@@ -491,7 +491,7 @@ when clearly better (please always use them, they are faster) if you set
491491
rev: "v3.18.0"
492492
hooks:
493493
- id: pyupgrade
494-
args: ["--py38-plus"]
494+
args: ["--py39-plus"]
495495
```
496496

497497
[pyupgrade]: https://github.com/asottile/pyupgrade

{{cookiecutter.project_name}}/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -326,7 +326,7 @@ disallow_incomplete_defs = true
326326

327327
[tool.ruff]
328328
{%- if cookiecutter.backend == "poetry" %}
329-
target-version = "py38"
329+
target-version = "py39"
330330
{%- endif %}
331331

332332
[tool.ruff.lint]

{{cookiecutter.project_name}}/{% if cookiecutter.__ci=='gitlab' %}.gitlab-ci.yml{% endif %}

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ make_wheels:
121121
entrypoint: ["env", "-u", "DOCKER_HOST"]
122122
command: ["dockerd-entrypoint.sh"]
123123
matrix:
124-
- CIBW_BUILD: ['cp38-*', 'cp39-*', 'cp310-*', 'cp311-*', 'cp312-*']
124+
- CIBW_BUILD: ['cp39-*', 'cp310-*', 'cp311-*', 'cp312-*', 'cp313-*']
125125
CIBW_PLATFORM: ['linux', 'windows'] # 'macos' not supported by CIBW on GitLab CI
126126
variables:
127127
DOCKER_HOST: tcp://docker:2375/

0 commit comments

Comments
 (0)