spatialaudio / python-sounddevice

:sound: Play and Record Sound with Python :snake:
https://python-sounddevice.readthedocs.io/
MIT License
980 stars 145 forks source link

Drop Python 3.6 #400

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
mgeier commented 2 years ago

Thanks!