Skip to content

Commit 6d5a256

Browse files
Drop support for Python 3.7
1 parent 8358442 commit 6d5a256

File tree

5 files changed

+10
-7
lines changed

5 files changed

+10
-7
lines changed

.github/workflows/test.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ jobs:
1313
matrix:
1414
os: [ubuntu-latest, windows-latest]
1515
python-version:
16-
- '3.7'
1716
- '3.8'
1817
- '3.9'
1918
- '3.10'

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Changelog
22

3+
## Unreleased
4+
5+
### Incompatible changes
6+
7+
- Require python 3.8+
8+
39
## 0.2.0 (2023-05-04)
410

511
### Incompatible changes

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919

2020
- uses: actions/setup-python@v4
2121
with:
22-
python-version: 3.7
22+
python-version: 3.8
2323

2424
- name: Install dependencies
2525
run: |

pyproject.toml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ build-backend = "setuptools.build_meta"
88

99
[project]
1010
# https://peps.python.org/pep-0621/#readme
11-
requires-python = ">=3.7"
11+
requires-python = ">=3.8"
1212
version = "0.2.0"
1313
name = "pytest-github-actions-annotate-failures"
1414
description = "pytest plugin to annotate failed tests with a workflow command for GitHub Actions"
@@ -25,7 +25,6 @@ classifiers = [
2525
"License :: OSI Approved :: MIT License",
2626
"Framework :: Pytest",
2727
"Programming Language :: Python :: 3",
28-
"Programming Language :: Python :: 3.7",
2928
"Programming Language :: Python :: 3.8",
3029
"Programming Language :: Python :: 3.9",
3130
"Programming Language :: Python :: 3.10",
@@ -78,7 +77,7 @@ extend-ignore = [
7877
"E501", # Line too long
7978
"PT004", # Use underscore for non-returning fixture (use usefixture instead)
8079
]
81-
target-version = "py37"
80+
target-version = "py38"
8281
unfixable = [
8382
"T20", # Removes print statements
8483
"F841", # Removes unused variables

tox.ini

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,11 @@
11
[tox]
22
envlist =
3-
py{37,38,39}-pytest{4,5,6,7}-{linux,windows}
3+
py{38,39}-pytest{4,5,6,7}-{linux,windows}
44
py{310,311,312}-pytest{6,7}-{linux,windows}
55
pkg
66

77
[gh-actions]
88
python =
9-
3.7: py37
109
3.8: py38
1110
3.9: py39
1211
3.10: py310

0 commit comments

Comments
 (0)