diff --git a/.github/workflows/test_and_deploy.yml b/.github/workflows/test_and_deploy.yml index 7bb14d6..37a18d5 100644 --- a/.github/workflows/test_and_deploy.yml +++ b/.github/workflows/test_and_deploy.yml @@ -24,7 +24,7 @@ jobs: fail-fast: false matrix: platform: [ubuntu-latest, windows-latest, macos-latest] - python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"] + python-version: ["3.9", "3.10", "3.11", "3.12"] steps: - uses: actions/checkout@v4 diff --git a/setup.cfg b/setup.cfg index 52e1139..c02f007 100644 --- a/setup.cfg +++ b/setup.cfg @@ -14,7 +14,6 @@ classifiers = Topic :: Software Development :: Testing Programming Language :: Python Programming Language :: Python :: 3 - Programming Language :: Python :: 3.8 Programming Language :: Python :: 3.9 Programming Language :: Python :: 3.10 Programming Language :: Python :: 3.11 @@ -30,7 +29,7 @@ project_urls = [options] packages = find: -python_requires = >=3.7 +python_requires = >=3.9 setup_requires = setuptools_scm # add your package requirements here install_requires = diff --git a/tox.ini b/tox.ini index 566f638..a2947c1 100644 --- a/tox.ini +++ b/tox.ini @@ -1,10 +1,9 @@ # For more information about tox, see https://tox.readthedocs.io/en/latest/ [tox] -envlist = py{38,39,310,311,312}-{linux,macos,windows} +envlist = py{39,310,311,312}-{linux,macos,windows} [gh-actions] python = - 3.8: py38 3.9: py39 3.10: py310 3.11: py311