Python 3.11 support

pull/16/head
Ewald de Wit 2023-01-02 10:21:35 +01:00
rodzic 7a41278f85
commit f64a2954ce
2 zmienionych plików z 2 dodań i 2 usunięć

Wyświetl plik

@ -3,5 +3,4 @@ pyqtgraph~=0.12.4
PyQt6~=6.3.1
eventkit~=0.8.9
sounddevice~=0.4.5
numba~=0.56.2
setuptools~=59.8.0

Wyświetl plik

@ -23,6 +23,7 @@ setup(
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3 :: Only',
],
keywords='frequency impulse response audio spectrum equalizer',
@ -30,6 +31,6 @@ setup(
'gui_scripts': ['hifiscan=hifiscan.app:main']
},
python_requires=">=3.8",
install_requires=['eventkit', 'numba', 'numpy', 'PyQt6', 'pyqtgraph',
install_requires=['eventkit', 'numpy', 'PyQt6', 'pyqtgraph',
'sounddevice']
)