spatialaudio / jackclient-python

🂻 JACK Audio Connection Kit (JACK) Client for Python :snake:
https://jackclient-python.readthedocs.io/
MIT License
131 stars 26 forks source link

Drop Python 3.6 #117

Closed vrslev closed 2 years ago

vrslev commented 2 years ago

Python 3.6 reached end of life.

In this PR I updated setup.py, CI workflow and ran pyupgrade on codebase:

for file in **/*.py; pyupgrade $file --py37-plus; end

https://github.com/spatialaudio/python-sounddevice/pull/400

mgeier commented 2 years ago

Thanks!