Skip to content

Commit 52ec578

Browse files
authored
Remove eol python version support
Resolves #18
1 parent e41b541 commit 52ec578

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ubuntu-latest
1111
strategy:
1212
matrix:
13-
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]
13+
python-version: ["3.9", "3.10", "3.11", "3.12"]
1414
name: ${{ matrix.python-version }}
1515
steps:
1616
- uses: actions/checkout@v2

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
[![pre-commit](https://github.com/jteppinette/python-logfmter/actions/workflows/pre-commit.yml/badge.svg)](https://github.com/jteppinette/python-logfmter/actions/workflows/pre-commit.yml)
44
[![test](https://github.com/jteppinette/python-logfmter/actions/workflows/test.yml/badge.svg)](https://github.com/jteppinette/python-logfmter/actions/workflows/test.yml)
5-
[![python-3.7-3.8-3.9-3.10-3.11-3.12](https://img.shields.io/badge/python-3.7%20|%203.8%20|%203.9%20|%203.10%20|%203.11|%203.12-blue.svg)](.github/workflows/test.yml)
5+
[![python-3.9-3.10-3.11-3.12](https://img.shields.io/badge/python-3.9%20|%203.10%20|%203.11|%203.12-blue.svg)](.github/workflows/test.yml)
66

77
Using the stdlib logging module and without changing a single logging call, logfmter supports
88
**global** (first and third party) [logfmt](https://www.brandur.org/logfmt) structured logging.

runtimes.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.7.12 3.8.11 3.9.10 3.10.1 3.11.9 3.12.3
1+
3.9.10 3.10.1 3.11.9 3.12.3

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ license = MIT
1313
packages = find:
1414
package_dir =
1515
= src
16-
python_requires = >= 3.7
16+
python_requires = >= 3.9
1717
include_package_data = True
1818

1919
[options.packages.find]

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py37,py38,py39,py310,py311,py312
2+
envlist = py39,py310,py311,py312
33

44
[testenv]
55
deps = pytest

0 commit comments

Comments
 (0)