Skip to content

Commit ff57d25

Browse files
authored
Drop Python 3.7 (#207)
1 parent d52bd29 commit ff57d25

File tree

5 files changed

+4
-6
lines changed

5 files changed

+4
-6
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,8 @@ jobs:
1717
max-parallel: 4
1818
matrix:
1919
platform: [ubuntu-latest, windows-latest]
20-
python-version: [3.7, 3.8, 3.9, '3.10', '3.11', '3.12-dev']
20+
python-version: [3.8, 3.9, '3.10', '3.11', '3.12-dev']
2121
include:
22-
- python-version: 3.7
23-
tox-env: py37
2422
- python-version: 3.8
2523
tox-env: py38
2624
- python-version: 3.9

docs/src/markdown/about/changelog.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44

55
- **NEW**: Formally support Python 3.11 (no change).
66
- **NEW**: Add support for Python 3.12 (`pathlib` changes).
7+
- **NEW**: Drop Python 3.7 support.
78
- **FIX**: Fix handling of current directory when magic and non-magic patterns are mixed in `glob` pattern list.
89

910
## 8.4.1

hatch_build.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,6 @@ def update(self, metadata):
4040
'License :: OSI Approved :: MIT License',
4141
'Operating System :: OS Independent',
4242
'Programming Language :: Python :: 3',
43-
'Programming Language :: Python :: 3.7',
4443
'Programming Language :: Python :: 3.8',
4544
'Programming Language :: Python :: 3.9',
4645
'Programming Language :: Python :: 3.10',

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ name = "wcmatch"
99
description = "Wildcard/glob file name matcher."
1010
readme = "README.md"
1111
license = "MIT"
12-
requires-python = ">=3.7"
12+
requires-python = ">=3.8"
1313
authors = [
1414
{ name = "Isaac Muse", email = "[email protected]" },
1515
]

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
isolated_build = true
33
skipsdist=true
44
envlist=
5-
py36,py37,py38,py39,py310,py311,py312,
5+
py38,py39,py310,py311,py312,
66
lint
77

88
[testenv]

0 commit comments

Comments
 (0)