File tree Expand file tree Collapse file tree 3 files changed +4
-8
lines changed Expand file tree Collapse file tree 3 files changed +4
-8
lines changed Original file line number Diff line number Diff line change @@ -22,8 +22,7 @@ Requirements
2222------------
2323
2424Python:
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
4443CFFI:
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
Original file line number Diff line number Diff line change 1- [bdist_wheel]
2- universal =1
3-
41[metadata]
52license_file = LICENSE
Original file line number Diff line number Diff line change 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' ,
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 ,
You can’t perform that action at this time.
0 commit comments