Skip to content

Commit 489f7cb

Browse files
committed
Drop support for Python 3.9
1 parent 1aced8f commit 489f7cb

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/smoke.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
- {os: ubuntu-24.04, python: "3.14t", ffmpeg: "8.0", extras: true}
3838
- {os: ubuntu-24.04, python: "3.12", ffmpeg: "8.0", extras: true}
3939
- {os: ubuntu-24.04, python: "pypy3.10", ffmpeg: "8.0"}
40-
- {os: macos-14, python: "3.9", ffmpeg: "8.0"}
40+
- {os: macos-14, python: "3.10", ffmpeg: "8.0"}
4141

4242
env:
4343
PYAV_PYTHON: python${{ matrix.config.python }}
@@ -111,7 +111,7 @@ jobs:
111111
fail-fast: false
112112
matrix:
113113
config:
114-
- {os: windows-latest, python: "3.9", ffmpeg: "latest"}
114+
- {os: windows-latest, python: "3.10", ffmpeg: "latest"}
115115

116116
steps:
117117
- name: Checkout

pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[build-system]
2-
requires = ["setuptools>=77.0", "cython>=3.1.0a1,<4"]
2+
requires = ["setuptools>=77.0", "cython>=3.1.0,<4"]
33

44
[project]
55
name = "av"
@@ -10,7 +10,7 @@ authors = [
1010
{name = "WyattBlue", email = "wyattblue@auto-editor.com"},
1111
{name = "Jeremy Lainé", email = "jeremy.laine@m4x.org"},
1212
]
13-
requires-python = ">=3.9"
13+
requires-python = ">=3.10"
1414
classifiers = [
1515
"Development Status :: 5 - Production/Stable",
1616
"Intended Audience :: Developers",
@@ -20,11 +20,11 @@ classifiers = [
2020
"Operating System :: Unix",
2121
"Operating System :: Microsoft :: Windows",
2222
"Programming Language :: Cython",
23-
"Programming Language :: Python :: 3.9",
2423
"Programming Language :: Python :: 3.10",
2524
"Programming Language :: Python :: 3.11",
2625
"Programming Language :: Python :: 3.12",
2726
"Programming Language :: Python :: 3.13",
27+
"Programming Language :: Python :: 3.14",
2828
"Topic :: Software Development :: Libraries :: Python Modules",
2929
"Topic :: Multimedia :: Sound/Audio",
3030
"Topic :: Multimedia :: Sound/Audio :: Conversion",

0 commit comments

Comments
 (0)