Skip to content

Commit 254acbb

Browse files
committed
Drop support for Python 3.8 (EOL)
1 parent eeb5028 commit 254acbb

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

CHANGELOG

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ June 11 2025 Version 1.0.26
2424
- Documentation and wiki pages updated with new additions and changes.
2525
- Changed `-metadata` to `metadata:s:a:0` and added `-map 0` trying to fix
2626
issue #30 .
27+
- Drop support for Python 3.8 (EOL).
2728

2829
+--------------------------------+
2930
October 22 2024 Version 1.0.25

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# FFcuesplitter - FFmpeg-based audio splitter for CDDA images associated with .cue files .
22

3-
[![Image](https://img.shields.io/static/v1?label=python&logo=python&message=3.8%20|%203.9%20|%203.10%20|%203.11%20|%203.12&color=blue)](https://www.python.org/downloads/)
3+
[![Image](https://img.shields.io/static/v1?label=python&logo=python&message=3.9%20|%203.10%20|%203.11%20|%203.12&color=blue)](https://www.python.org/downloads/)
44
[![Python application](https://github.com/jeanslack/FFcuesplitter/actions/workflows/CI.yml/badge.svg)](https://github.com/jeanslack/FFcuesplitter/actions/workflows/CI.yml)
55

66
FFcuesplitter is a multi-platform CUE sheet splitter entirely based on FFmpeg.
@@ -29,7 +29,7 @@ or from the [command line](https://github.com/jeanslack/FFcuesplitter#using-comm
2929

3030
## Requires
3131

32-
- Python >=3.8
32+
- Python >=3.9
3333
- [deflacue](https://pypi.org/project/deflacue/)
3434
- [chardet](https://pypi.org/project/chardet/)
3535
- [tqdm](https://pypi.org/project/tqdm/#description)

pyproject.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ build-backend = "hatchling.build"
66
name = "ffcuesplitter"
77
dynamic = ["version"]
88
readme = "README.md"
9-
requires-python = ">=3.8"
9+
requires-python = ">=3.9"
1010
authors = [
1111
{name = "Gianluca Pernigotto", email = "[email protected]"}
1212
]
@@ -31,7 +31,6 @@ classifiers = [
3131
"Operating System :: MacOS :: MacOS X",
3232
"Operating System :: POSIX :: Linux",
3333
"Programming Language :: Python :: 3 :: Only",
34-
"Programming Language :: Python :: 3.8",
3534
"Programming Language :: Python :: 3.9",
3635
"Programming Language :: Python :: 3.10",
3736
"Programming Language :: Python :: 3.11",

0 commit comments

Comments
 (0)