Skip to content

Commit

Permalink
Drop Python 3.8, add 3.13, 3.14
Browse files Browse the repository at this point in the history
  • Loading branch information
mschwager committed Oct 31, 2024
1 parent 0c31764 commit 2c84724
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 10 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.16.0] - 2024-10-31

### Added

- Support for Python 3.13
- Support for Python 3.14

### Removed

- Support for Python 3.8

## [0.15.0] - 2024-06-13

### Added
Expand Down
17 changes: 9 additions & 8 deletions dlint/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
from importlib.metadata import metadata

from . import linters # noqa F401
from . import multi # noqa F401
from . import namespace # noqa F401
Expand All @@ -6,11 +8,10 @@
from . import tree # noqa F401
from . import util # noqa F401

__name__ = 'dlint'
__version__ = '0.15.0'
__description__ = (
"Dlint is a tool for encouraging best coding practices "
"and helping ensure Python code is secure."
)
__url__ = 'https://github.com/dlint-py/dlint'
__license__ = 'BSD-3-Clause'
m = metadata('dlint')

__name__ = m['Name']
__version__ = m['Version']
__description__ = m['Summary']
__url__ = m['Home-page']
__license__ = m['License']
5 changes: 3 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "dlint"
version = "0.15.0"
version = "0.16.0"
description = "Dlint is a tool for encouraging best coding practices and helping ensure Python code is secure."
authors = []
license = "BSD-3-Clause"
Expand All @@ -14,11 +14,12 @@ classifiers = [
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13',
'Programming Language :: Python :: 3.14',
'Topic :: Security',
'Topic :: Software Development :: Quality Assurance',
]
Expand Down

0 comments on commit 2c84724

Please sign in to comment.