Skip to content

Commit 31202c1

Browse files
noahnuNoah Ulster
authored andcommitted
feat: drop support for py3.8, raise min. pytest to v8 (#904)
BREAKING CHANGE: Drops support for Python 3.8 which is end of life as of October 2024. Raises the minimum version of pytest to v8.
1 parent b150d4e commit 31202c1

File tree

6 files changed

+413
-400
lines changed

6 files changed

+413
-400
lines changed

.github/workflows/ci.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
strategy:
4141
matrix:
4242
os: [ubuntu-latest, windows-latest]
43-
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13-dev']
43+
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13-dev']
4444
fail-fast: ${{ !contains(github.event.pull_request.labels.*.name, 'ci/run-all-tests') }}
4545
steps:
4646
- uses: actions/checkout@v4.2.2

.poetry-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.8.3
1+
1.8.4

.python-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.12.5
1+
3.13.0

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,8 @@ Syrupy will always be compatible with the latest version of Python and Pytest. I
3939

4040
| Syrupy Version | Python Support | Pytest Support |
4141
| -------------- | -------------- | -------------- |
42-
| 4.x.x | >3.8.1 | >=7 |
42+
| 5.x.x | >3.9 | >=8 |
43+
| 4.x.x | >3.8.1, | >=7, <9 |
4344
| 3.x.x | >=3.7, <4 | >=5.1, <8 |
4445
| 2.x.x | >=3.6, <4 | >=5.1, <8 |
4546

0 commit comments

Comments
 (0)