Skip to content

Commit

Permalink
Merge pull request #611 from lazka/drop-py37
Browse files Browse the repository at this point in the history
Drop support for Python 3.7
  • Loading branch information
lazka committed Sep 3, 2023
2 parents 5168b23 + 2defd01 commit 38695eb
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: [3.7, 3.8, 3.9, '3.10', 3.11, '3.12', 'pypy-3.8']
python-version: [3.8, 3.9, '3.10', 3.11, '3.12', 'pypy-3.8']
exclude:
# hangs
- os: macos-latest
Expand All @@ -28,7 +28,7 @@ jobs:
pip-cache: ~\AppData\Local\pip\Cache
poetry-cache: ~\AppData\Local\pypoetry\Cache
- os: ubuntu-latest
python-version: 3.7
python-version: 3.8
build-docs: true
- os: ubuntu-latest
python-version: 3.11
Expand Down
2 changes: 1 addition & 1 deletion .mypy.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[mypy]
python_version = 3.7
python_version = 3.8
ignore_missing_imports = True

[mypy-setup]
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ It can read Xing headers to accurately calculate the bitrate and length of
MP3s. ID3 and APEv2 tags can be edited regardless of audio format. It can also
manipulate Ogg streams on an individual packet/page level.

Mutagen works with Python 3.7+ (CPython and PyPy) on Linux, Windows and macOS,
Mutagen works with Python 3.8+ (CPython and PyPy) on Linux, Windows and macOS,
and has no dependencies outside the Python standard library. Mutagen is licensed
under `the GPL version 2 or
later <https://spdx.org/licenses/GPL-2.0-or-later.html>`__.
Expand Down
3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ description = "read and write audio tags for many formats"
authors = []

[tool.poetry.dependencies]
python = "^3.7"
python = "^3.8.1"
python-afl = {version = "^0.7.3", optional = true}

[tool.poetry.extras]
Expand All @@ -20,6 +20,7 @@ coverage = "^7.2.5"
Sphinx = "^4.0.0"
sphinx-rtd-theme = "^1.0.0"
sphinx-autobuild = "^2021.3.14"
setuptools = "^68.1.2"

[build-system]
requires = ["setuptools"]
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -293,7 +293,7 @@ def run(self):
('share/man/man1', glob.glob("man/*.1")),
],
python_requires=(
'>=3.7'),
'>=3.8'),
entry_points={
'console_scripts': [
'mid3cp=mutagen._tools.mid3cp:entry_point',
Expand Down

0 comments on commit 38695eb

Please sign in to comment.