diff --git a/.github/workflows/python-versions.yml b/.github/workflows/python-versions.yml index 7238492..ac35790 100644 --- a/.github/workflows/python-versions.yml +++ b/.github/workflows/python-versions.yml @@ -5,12 +5,10 @@ jobs: strategy: matrix: python-version: - - "3.7" - "3.8" - - "3.9" - - "3.10" - - "pypy-3.7" + - "3.13" - "pypy-3.8" + - "pypy-3.11" runs-on: ubuntu-latest steps: - name: Install PortAudio diff --git a/.readthedocs.yml b/.readthedocs.yml index eaa7010..f862743 100644 --- a/.readthedocs.yml +++ b/.readthedocs.yml @@ -11,4 +11,6 @@ python: - method: pip path: . - requirements: doc/requirements.txt +sphinx: + configuration: doc/conf.py formats: all diff --git a/setup.py b/setup.py index 7f9cfb0..5137610 100644 --- a/setup.py +++ b/setup.py @@ -69,7 +69,7 @@ def get_tag(self): packages=packages, package_data=package_data, zip_safe=zip_safe, - python_requires='>=3.7', + python_requires='>=3.8', setup_requires=['CFFI>=1.0'], install_requires=['CFFI>=1.0'], extras_require={'NumPy': ['NumPy']},