diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 98852404..74f3a375 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -14,7 +14,7 @@ jobs: strategy: max-parallel: 5 matrix: - 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/README.md b/README.md index 58b82abf..0cbcdd56 100644 --- a/README.md +++ b/README.md @@ -28,7 +28,7 @@ See [more screenshots here](#more-screenshots). * PuppetDB v. 5.2-8.* * (**Note**: PuppetDB 8.1.0 is not supported because of [this bug](https://github.com/puppetlabs/puppetdb/issues/3866). Please update to 8.1.1+.) -* Python 3.8-3.12 or Docker +* Python 3.9-3.12 or Docker ## Installation diff --git a/setup.py b/setup.py index 97e2498f..3821e13f 100644 --- a/setup.py +++ b/setup.py @@ -51,7 +51,7 @@ def run_tests(self): long_description='\n'.join((README, CHANGELOG)), long_description_content_type='text/markdown', zip_safe=False, - python_requires=">=3.8.0", + python_requires=">=3.9.0", install_requires=requirements, tests_require=requirements_test, extras_require={'test': requirements_test}, @@ -68,7 +68,6 @@ def run_tests(self): 'License :: OSI Approved :: Apache Software License', 'Operating System :: POSIX', 'Programming Language :: Python :: 3', - 'Programming Language :: Python :: 3.8', 'Programming Language :: Python :: 3.9', 'Programming Language :: Python :: 3.10', 'Programming Language :: Python :: 3.11',