Skip to content

Commit d313033

Browse files
committed
Officially drop Python 2 compatibility
1 parent ed52800 commit d313033

File tree

3 files changed

+4
-8
lines changed

3 files changed

+4
-8
lines changed

README.rst

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,7 @@ Requirements
2222
------------
2323

2424
Python:
25-
Of course, you'll need Python_.
26-
Any version where CFFI (see below) is supported should work.
25+
Of course, you'll need Python_. More specifically, you'll need Python 3.
2726
If you don't have Python installed yet, you should get one of the
2827
distributions which already include CFFI and NumPy (and many other useful
2928
things), e.g. Anaconda_ or WinPython_.
@@ -43,7 +42,7 @@ pip/setuptools:
4342

4443
CFFI:
4544
The `C Foreign Function Interface for Python`_ is used to access the C-API
46-
of the JACK library from within Python. It supports CPython 2.6, 2.7, 3.x;
45+
of the JACK library from within Python. It is supported on CPython
4746
and is distributed with PyPy_.
4847
If it's not installed already, you should install it with your package
4948
manager (the package might be called ``python3-cffi`` or similar), or you can

setup.cfg

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,2 @@
1-
[bdist_wheel]
2-
universal=1
3-
41
[metadata]
52
license_file = LICENSE

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
py_modules=['jack'],
1616
setup_requires=['CFFI>=1.0'],
1717
install_requires=['CFFI>=1.0'],
18-
python_requires='>=2.6',
18+
python_requires='>=3',
1919
extras_require={'NumPy': ['NumPy']},
2020
cffi_modules=['jack_build.py:ffibuilder'],
2121
author='Matthias Geier',
@@ -30,8 +30,8 @@
3030
'License :: OSI Approved :: MIT License',
3131
'Operating System :: OS Independent',
3232
'Programming Language :: Python',
33-
'Programming Language :: Python :: 2',
3433
'Programming Language :: Python :: 3',
34+
'Programming Language :: Python :: 3 :: Only',
3535
'Topic :: Multimedia :: Sound/Audio',
3636
],
3737
zip_safe=True,

0 commit comments

Comments
 (0)