Skip to content

Commit 3a09b2c

Browse files
committed
DEV: correct python version in tools
1 parent e765ddf commit 3a09b2c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ authors = [
88
{ name = "Lucas Colley", email = "lucas.colley8@gmail.com" },
99
{ name = "Open Source Contributors" },
1010
]
11-
1211
description = "Extra array functions that aren't in the array API standard, implemented in terms of the standard."
1312
readme = "README.md"
1413
license.file = "LICENSE"
@@ -147,7 +146,7 @@ report.exclude_also = [
147146

148147
[tool.mypy]
149148
files = ["src", "tests"]
150-
python_version = "3.8"
149+
python_version = "3.9"
151150
warn_unused_configs = true
152151
strict = true
153152
enable_error_code = ["ignore-without-code", "redundant-expr", "truthy-bool"]
@@ -164,6 +163,7 @@ disallow_incomplete_defs = true
164163
# Ruff
165164

166165
[tool.ruff]
166+
target-version = "py39"
167167

168168
[tool.ruff.lint]
169169
extend-select = [
@@ -203,7 +203,7 @@ isort.required-imports = ["from __future__ import annotations"]
203203
# Pylint
204204

205205
[tool.pylint]
206-
py-version = "3.8"
206+
py-version = "3.9"
207207
ignore-paths = [".*/_version.py"]
208208
reports.output-format = "colorized"
209209
similarities.ignore-imports = "yes"

0 commit comments

Comments
 (0)