Skip to content

Commit 9fe76c5

Browse files
committed
Drop Python 3.7
1 parent 57bd7bf commit 9fe76c5

File tree

7 files changed

+8
-12
lines changed

7 files changed

+8
-12
lines changed

.github/workflows/python_ci.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,13 +22,12 @@ jobs:
2222
runs-on: "windows-2022"
2323
continue-on-error: ${{ matrix.config.experimental }}
2424
env:
25-
USING_COVERAGE: '3.7,3.8,3.9,3.10,3.11,3.12,3.13'
25+
USING_COVERAGE: '3.8,3.9,3.10,3.11,3.12,3.13'
2626

2727
strategy:
2828
fail-fast: False
2929
matrix:
3030
config:
31-
- {python-version: "3.7", testenvs: "py37,build", experimental: False}
3231
- {python-version: "3.8", testenvs: "py38,build", experimental: False}
3332
- {python-version: "3.9", testenvs: "py39,build", experimental: False}
3433
- {python-version: "3.10", testenvs: "py310,build", experimental: False}

.github/workflows/python_ci_linux.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,12 @@ jobs:
2323
runs-on: "ubuntu-22.04"
2424
continue-on-error: ${{ matrix.config.experimental }}
2525
env:
26-
USING_COVERAGE: '3.7,3.8,3.9,3.10,3.11,3.12,3.13'
26+
USING_COVERAGE: '3.8,3.9,3.10,3.11,3.12,3.13'
2727

2828
strategy:
2929
fail-fast: False
3030
matrix:
3131
config:
32-
- {python-version: "3.7", testenvs: "py37,build", experimental: False}
3332
- {python-version: "3.8", testenvs: "py38,build", experimental: False}
3433
- {python-version: "3.9", testenvs: "py39,build", experimental: False}
3534
- {python-version: "3.10", testenvs: "py310,build", experimental: False}

.github/workflows/python_ci_macos.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,13 +22,12 @@ jobs:
2222
runs-on: "macos-${{ matrix.config.os-ver }}"
2323
continue-on-error: ${{ matrix.config.experimental }}
2424
env:
25-
USING_COVERAGE: '3.7,3.8,3.9,3.10,3.11,3.12,3.13'
25+
USING_COVERAGE: '3.8,3.9,3.10,3.11,3.12,3.13'
2626

2727
strategy:
2828
fail-fast: False
2929
matrix:
3030
config:
31-
- {python-version: "3.7", os-ver: "15-intel", testenvs: "py37,build", experimental: False}
3231
- {python-version: "3.8", os-ver: "14", testenvs: "py38,build", experimental: False}
3332
- {python-version: "3.9", os-ver: "14", testenvs: "py39,build", experimental: False}
3433
- {python-version: "3.10", os-ver: "14", testenvs: "py310,build", experimental: False}

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ repos:
6666
hooks:
6767
- id: pyupgrade
6868
args:
69-
- --py37-plus
69+
- --py38-plus
7070
- --keep-runtime-typing
7171

7272
- repo: https://github.com/Lucas-C/pre-commit-hooks

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ base-classifiers = [
3434
"Topic :: Utilities",
3535
"Typing :: Typed",
3636
]
37-
python-versions = [ "3.7", "3.8", "3.9", "3.10", "3.11", "3.12", "3.13",]
37+
python-versions = [ "3.8", "3.9", "3.10", "3.11", "3.12", "3.13",]
3838
python-implementations = [ "CPython",]
3939
platforms = [ "Windows", "macOS", "Linux",]
4040
license-key = "MIT"

repo_helper.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ enable_conda: false
1919

2020
# Versions to run tests for
2121
python_versions:
22-
- '3.7'
2322
- '3.8'
2423
- '3.9'
2524
- "3.10"

tox.ini

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
# * pytest
2323

2424
[tox]
25-
envlist = py37, py38, py39, py310, py311, py312, py313, mypy, build
25+
envlist = py38, py39, py310, py311, py312, py313, mypy, build
2626
skip_missing_interpreters = True
2727
isolated_build = True
2828
requires =
@@ -32,7 +32,7 @@ requires =
3232
virtualenv!=20.16.0
3333

3434
[envlists]
35-
test = py37, py38, py39, py310, py311, py312, py313
35+
test = py38, py39, py310, py311, py312, py313
3636
qa = mypy, lint
3737
cov = py39, coverage
3838

@@ -184,7 +184,7 @@ inline-quotes = "
184184
multiline-quotes = """
185185
docstring-quotes = """
186186
count = True
187-
min_python_version = 3.7
187+
min_python_version = 3.8
188188
unused-arguments-ignore-abstract-functions = True
189189
unused-arguments-ignore-overload-functions = True
190190
unused-arguments-ignore-magic-methods = True

0 commit comments

Comments
 (0)