Skip to content

Commit

Permalink
feat: drop support for py3.8, raise min. pytest to v8 (#904)
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
noahnu authored Oct 20, 2024
1 parent 030a5a6 commit bcf1ec6
Show file tree
Hide file tree
Showing 6 changed files with 430 additions and 417 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13-dev']
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13-dev']
fail-fast: true
steps:
- uses: actions/[email protected]
Expand Down
2 changes: 1 addition & 1 deletion .poetry-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.8.3
1.8.4
2 changes: 1 addition & 1 deletion .python-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.12.5
3.13.0
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,8 @@ Syrupy will always be compatible with the latest version of Python and Pytest. I

| Syrupy Version | Python Support | Pytest Support |
| -------------- | -------------- | -------------- |
| 4.x.x | >3.8.1 | >=7 |
| 5.x.x | >3.9 | >=8 |
| 4.x.x | >3.8.1, | >=7, <9 |
| 3.x.x | >=3.7, <4 | >=5.1, <8 |
| 2.x.x | >=3.6, <4 | >=5.1, <8 |

Expand Down
Loading

0 comments on commit bcf1ec6

Please sign in to comment.