Skip to content

Commit

Permalink
drop support for python 3.8
Browse files Browse the repository at this point in the history
  • Loading branch information
TheMeier committed Nov 10, 2024
1 parent b68b6c8 commit 8b11d29
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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<a id="installation"></a>

Expand Down
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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},
Expand All @@ -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',
Expand Down

0 comments on commit 8b11d29

Please sign in to comment.