Skip to content

Commit 70bd007

Browse files
committed
Drop Python 3.9 support
1 parent e10a5da commit 70bd007

File tree

3 files changed

+7
-5
lines changed

3 files changed

+7
-5
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,18 +10,17 @@ jobs:
1010
- macos-latest
1111
- windows-latest
1212
python-version:
13-
- "3.9"
1413
- "3.10"
1514
- "3.11"
1615
- "3.12"
1716
- "3.13"
18-
- "3.14-dev"
17+
- "3.14"
1918
steps:
20-
- uses: actions/checkout@v4
19+
- uses: actions/checkout@v6
2120
- name: Install Poetry
2221
run: pipx install poetry
2322
- name: Set up Python
24-
uses: actions/setup-python@v5
23+
uses: actions/setup-python@v6
2524
with:
2625
python-version: ${{ matrix.python-version }}
2726
cache: "poetry"

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1111

1212
- Use `re` submodules instead of `sre_parse` and `sre_constants` ([#61](https://github.com/dlint-py/dlint/issues/61))
1313

14+
### Removed
15+
16+
- Support for Python 3.9
17+
1418
## [0.16.0] - 2024-10-31
1519

1620
### Added

pyproject.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ classifiers = [
1414
'Operating System :: MacOS :: MacOS X',
1515
'Operating System :: Microsoft :: Windows',
1616
'Operating System :: POSIX',
17-
'Programming Language :: Python :: 3.9',
1817
'Programming Language :: Python :: 3.10',
1918
'Programming Language :: Python :: 3.11',
2019
'Programming Language :: Python :: 3.12',

0 commit comments

Comments
 (0)