aboutsummaryrefslogtreecommitdiff
path: root/pyproject.toml
diff options
context:
space:
mode:
authorClaude <[email protected]>2026-04-28 14:23:15 +0530
committerClaude <[email protected]>2026-04-28 14:23:15 +0530
commitc6dd7992f18ceb10fc5a65c6004c2a19392975e1 (patch)
treebb240eef169f4bc2330ee35c080a88a9936563a9 /pyproject.toml
parent0a3ac3c0a226b9ce2ba6aa941afa8773f306653d (diff)
downloadedify-c6dd7992f18ceb10fc5a65c6004c2a19392975e1.tar.xz
edify-c6dd7992f18ceb10fc5a65c6004c2a19392975e1.zip
feat!: drop Python 3.7 support
3.7 reached end-of-life on 2023-06-27. Copilot dropped 3.7 from the CI matrix in #30 but left the rest of the metadata pointing at it. - setup.py: drop the 3.7 classifier and bump `python_requires` to >=3.8 - pyproject.toml: bump black `target-version` to py38 - tox.ini: drop `py37` and `pypy37` envs and basepython entries - README.rst: bump quick-start Python range to 3.8-3.14 - ci/templates/.appveyor.yml: bump the `check` env from Python 3.6 to 3.8 to keep the floor consistent (template only, not currently rendered) BREAKING CHANGE: Edify now requires Python 3.8 or newer.
Diffstat (limited to 'pyproject.toml')
-rw-r--r--pyproject.toml2
1 files changed, 1 insertions, 1 deletions
diff --git a/pyproject.toml b/pyproject.toml
index 50a796d..4dc0ff5 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -6,5 +6,5 @@ requires = [
[tool.black]
line-length = 140
-target-version = ['py37']
+target-version = ['py38']
skip-string-normalization = true