Skip to content

Commit 571eb3d

Browse files
committed
chore: drop support for Python 3.7 and 3.8
1 parent e838656 commit 571eb3d

File tree

5 files changed

+8
-13
lines changed

5 files changed

+8
-13
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,11 @@ jobs:
1111
strategy:
1212
matrix:
1313
python:
14-
- "3.7"
15-
- "3.8"
1614
- "3.9"
1715
- "3.10"
1816
- "3.11"
19-
- "pypy-3.7"
20-
- "pypy-3.8"
21-
- "pypy-3.9"
17+
- "pypy-3.10"
18+
- "pypy-3.11"
2219
steps:
2320
- uses: actions/checkout@v5
2421
- name: Setup Python ${{ matrix.python }}

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,10 @@ adheres to [Semantic Versioning](https://semver.org/).
99

1010
[unreleased]: https://github.com/rogdham/python-xz/compare/v0.5.0...HEAD
1111

12+
### :boom: Breaking changes
13+
14+
- End of Python 3.7 and 3.8 support
15+
1216
### :house: Internal
1317

1418
- Freeze dev dependencies versions

pytest.ini

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,6 @@ addopts =
44
--strict-markers
55
filterwarnings =
66
error
7-
# issue in standard lib for PyPy < 3.9
8-
ignore:Using or importing the ABCs from 'collections':DeprecationWarning:_lzma
97
markers =
108
generate_integration_files
119
integration

setup.cfg

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,6 @@ classifiers =
1919
Programming Language :: Python
2020
Programming Language :: Python :: 3
2121
Programming Language :: Python :: 3 :: Only
22-
Programming Language :: Python :: 3.7
23-
Programming Language :: Python :: 3.8
2422
Programming Language :: Python :: 3.9
2523
Programming Language :: Python :: 3.10
2624
Programming Language :: Python :: 3.11
@@ -32,9 +30,7 @@ classifiers =
3230
include_package_data = True
3331
package_dir = =src
3432
packages = xz
35-
python_requires = >=3.7
33+
python_requires = >=3.9
3634
setup_requires =
3735
setuptools_scm
3836
wheel
39-
install_requires =
40-
typing-extensions>=4.5.0;python_version<"3.8"

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tox]
22
envlist =
3-
py, py37, py38, py39, py310, py311, pypy3
3+
py, py39, py310, py311, pypy3
44
generate-integration-files, type, lint, format
55

66
[testenv]

0 commit comments

Comments
 (0)