Skip to content

Commit 6d4526e

Browse files
Drop support for Python 3.7 (#87)
1 parent 801b644 commit 6d4526e

File tree

5 files changed

+4
-6
lines changed

5 files changed

+4
-6
lines changed

.github/workflows/test.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@ jobs:
2121
matrix:
2222
os: [ubuntu-latest, windows-latest]
2323
python-version:
24-
- '3.7'
2524
- '3.8'
2625
- '3.9'
2726
- '3.10'

CHANGELOG.md

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

55
### Incompatible changes
66

7+
- Require python 3.8+ #87 (thanks to @edgarrmondragon)
78
- Require pytest 6+ #86 (thanks to @edgarrmondragon)
89

910
## 0.2.0 (2023-05-04)

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: 1 addition & 2 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",

tox.ini

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

66
[gh-actions]
77
python =
8-
3.7: py37
98
3.8: py38
109
3.9: py39
1110
3.10: py310

0 commit comments

Comments
 (0)