Skip to content

Commit a7d8aee

Browse files
authored
Drop support for Python 3.8 (#133)
1 parent bea8856 commit a7d8aee

3 files changed

Lines changed: 9 additions & 4 deletions

File tree

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
strategy:
1212
fail-fast: false
1313
matrix:
14-
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
14+
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
1515
os: [windows-latest, macos-latest, ubuntu-latest]
1616
steps:
1717
- uses: actions/checkout@v4

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ repos:
33
rev: v3.15.0
44
hooks:
55
- id: pyupgrade
6-
args: [--py38-plus]
6+
args: [--py39-plus]
77

88
- repo: https://github.com/psf/black-pre-commit-mirror
99
rev: 23.12.1

tox.ini

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tox]
22
envlist =
3-
py{312, 311, 310, 39, 38}
3+
py{313, 312, 311, 310, 39}
44
isolated_build = true
55

66
[testenv]
@@ -9,4 +9,9 @@ passenv =
99
extras =
1010
dev
1111
commands =
12-
{envpython} -m pytest --cov cherry_picker --cov-report html --cov-report term --cov-report xml {posargs}
12+
{envpython} -m pytest \
13+
--cov cherry_picker \
14+
--cov-report html \
15+
--cov-report term \
16+
--cov-report xml \
17+
{posargs}

0 commit comments

Comments
 (0)