Skip to content

Commit 779bedf

Browse files
committed
Remove 3.7 from workflows
1 parent 36209a4 commit 779bedf

2 files changed

Lines changed: 3 additions & 4 deletions

File tree

.github/workflows/python-tests.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ jobs:
2020
- "windows-latest"
2121
- "ubuntu-latest"
2222
python-version:
23-
- "3.7"
2423
- "3.8"
2524
- "3.9"
2625
- "3.10"

pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ build-backend = "setuptools.build_meta"
55
[project]
66
name = "module-name"
77
version = "0.1.0"
8-
requires-python = ">=3.7"
8+
requires-python = ">=3.8"
99
description = "Module Description"
1010
readme = "README.md"
1111
license = { file = "LICENSE" }
@@ -99,7 +99,7 @@ max-line-length = 88
9999
[tool.tox]
100100
legacy_tox_ini = """
101101
[tox]
102-
envlist = py37,py38,py39,py310,py311,py312,coverage,mypy
102+
envlist = py38,py39,py310,py311,py312,coverage,mypy
103103
skip_missing_interpreters = true
104104
isolated_build = True
105105
@@ -110,7 +110,7 @@ commands =
110110
coverage run -p -m pytest tests/
111111
112112
[testenv:coverage]
113-
depends = py37,py38,py39,py310,py311,py312
113+
depends = py38,py39,py310,py311,py312
114114
parallel_show_output = true
115115
commands =
116116
python -m coverage combine

0 commit comments

Comments
 (0)