Skip to content

Commit 5dce69c

Browse files
author
Bastian Bechtold
committed
python <= 3.9 support removed
1 parent cfed1c5 commit 5dce69c

2 files changed

Lines changed: 4 additions & 12 deletions

File tree

.github/workflows/python-package.yml

Lines changed: 2 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -10,29 +10,21 @@ jobs:
1010
matrix:
1111
os: [ubuntu-latest, windows-latest, macos-latest]
1212
python-version:
13-
- "3.9"
1413
- "3.10"
1514
- "3.11"
1615
- "3.12"
1716
- "3.13"
18-
- "pypy-3.7"
19-
- "pypy-3.8"
20-
- "pypy-3.9"
17+
- "3.14"
2118
- "pypy-3.10"
19+
- "pypy-3.11"
2220
architecture: ["x86", "x64"]
2321
exclude:
24-
- os: macos-latest # No Numpy binary wheel
25-
python-version: "pypy-3.7"
26-
- os: macos-latest
27-
python-version: "3.9"
2822
- os: macos-latest
2923
python-version: "3.10"
3024
- os: macos-latest
3125
architecture: "x86"
3226
- os: ubuntu-latest
3327
architecture: "x86"
34-
- os: windows-latest
35-
python-version: "pypy-3.9"
3628
- os: windows-latest
3729
python-version: "pypy-3.10"
3830

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -87,14 +87,15 @@ def get_tag(self):
8787
version=soundfile_version,
8888
description='An audio library based on libsndfile, CFFI and NumPy',
8989
author='Bastian Bechtold',
90-
author_email='basti@bastibe.de',
90+
author_email='bastibe.dev@mailbox.org',
9191
url='https://github.com/bastibe/python-soundfile',
9292
keywords=['audio', 'libsndfile'],
9393
py_modules=['soundfile'],
9494
packages=packages,
9595
package_data=package_data,
9696
zip_safe=zip_safe,
9797
license='BSD 3-Clause License',
98+
python_requires=">=3.10",
9899
setup_requires=["cffi>=1.0"],
99100
install_requires=['cffi>=1.0', 'numpy', 'typing-extensions'],
100101
cffi_modules=["soundfile_build.py:ffibuilder"],
@@ -109,7 +110,6 @@ def get_tag(self):
109110
'Operating System :: OS Independent',
110111
'Programming Language :: Python',
111112
'Programming Language :: Python :: 3',
112-
'Programming Language :: Python :: 2',
113113
'Programming Language :: Python :: Implementation :: PyPy',
114114
'Programming Language :: Python :: Implementation :: CPython',
115115
'Topic :: Multimedia :: Sound/Audio',

0 commit comments

Comments
 (0)