diff --git a/.github/workflows/build_and_minimal_test.yml b/.github/workflows/build_and_minimal_test.yml index 9eb7948..cf62563 100644 --- a/.github/workflows/build_and_minimal_test.yml +++ b/.github/workflows/build_and_minimal_test.yml @@ -14,7 +14,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ['3.8', '3.9', '3.10'] + python-version: ['3.10', '3.11'] steps: - uses: actions/checkout@v2 diff --git a/.readthedocs.yaml b/.readthedocs.yaml index 5f08da0..4dffd1c 100644 --- a/.readthedocs.yaml +++ b/.readthedocs.yaml @@ -16,6 +16,6 @@ formats: # Optionally set the version of Python and requirements required to build your docs python: - version: 3.8 + version: 3.10 install: - requirements: docs/requirements.txt diff --git a/setup.py b/setup.py index 0c6ea13..09ed7d4 100644 --- a/setup.py +++ b/setup.py @@ -43,15 +43,14 @@ 'requests', 'scipy', ], - python_requires='>=3.8', + python_requires='>=3.10', classifiers=[ 'Development Status :: 3 - Alpha', 'Intended Audience :: Developers', 'Intended Audience :: Science/Research', 'License :: OSI Approved :: Apache Software License', - 'Programming Language :: Python :: 3.8', - 'Programming Language :: Python :: 3.9', 'Programming Language :: Python :: 3.10', + 'Programming Language :: Python :: 3.11', 'Topic :: Scientific/Engineering :: Artificial Intelligence', ], )