Skip to content

Commit

Permalink
Drop support for Python 3.7 (#87)
Browse files Browse the repository at this point in the history
  • Loading branch information
edgarrmondragon authored Oct 22, 2024
1 parent 801b644 commit 6d4526e
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 6 deletions.
1 change: 0 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ jobs:
matrix:
os: [ubuntu-latest, windows-latest]
python-version:
- '3.7'
- '3.8'
- '3.9'
- '3.10'
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@

### Incompatible changes

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

## 0.2.0 (2023-05-04)
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:

- uses: actions/setup-python@v4
with:
python-version: 3.7
python-version: 3.8

- name: Install dependencies
run: |
Expand Down
3 changes: 1 addition & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ build-backend = "setuptools.build_meta"

[project]
# https://peps.python.org/pep-0621/#readme
requires-python = ">=3.7"
requires-python = ">=3.8"
version = "0.2.0"
name = "pytest-github-actions-annotate-failures"
description = "pytest plugin to annotate failed tests with a workflow command for GitHub Actions"
Expand All @@ -25,7 +25,6 @@ classifiers = [
"License :: OSI Approved :: MIT License",
"Framework :: Pytest",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
Expand Down
3 changes: 1 addition & 2 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
[tox]
envlist =
py{37,38,39,310,311,312}-pytest{6,7,8}
py{38,39,310,311,312}-pytest{6,7,8}
pkg

[gh-actions]
python =
3.7: py37
3.8: py38
3.9: py39
3.10: py310
Expand Down

0 comments on commit 6d4526e

Please sign in to comment.