Skip to content

Commit

Permalink
Officially removed support for python 3.7. Added tests for python 3.12
Browse files Browse the repository at this point in the history
  • Loading branch information
ralequi committed Oct 25, 2023
1 parent b947600 commit d6ce3d0
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11"]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
os: [ubuntu-latest, macOS-latest, windows-latest]

steps:
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
Version 1.3.1
=============
- **Breaking changes**
- **smartctl.all**:
- Officially removed support for python 3.7.

Version 1.3.0
=============

Expand Down
6 changes: 1 addition & 5 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ authors = [
license = { text = 'GNU LGPLv2.1' }
description = 'Wrapper for smartctl (smartmontools)'
readme = "README.md"
requires-python = ">=3.7"
requires-python = ">=3.8"

classifiers = [
'Development Status :: 5 - Production/Stable',
Expand All @@ -46,10 +46,6 @@ classifiers = [
'Operating System :: OS Independent',
'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',
'Topic :: Software Development',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules',
Expand Down

0 comments on commit d6ce3d0

Please sign in to comment.