Skip to content

Commit a0fdfe6

Browse files
committed
Drop support for python 3.9
1 parent 4c17139 commit a0fdfe6

6 files changed

Lines changed: 18 additions & 149 deletions

File tree

.flake8

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ ignore=
1717
per-file-ignores =
1818
test/*:FTP3
1919
test/test_plugin/*:FTP3,FTP041
20-
ftp-python-version = 3.9.0
20+
ftp-python-version = 3.10.0
2121
ftp-auto-manage-options = true
2222
ftp-pyproject-toml-file = pyproject.toml
2323
ftp-pytest-parametrize-names-type = csv

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
strategy:
3535
fail-fast: false
3636
matrix:
37-
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13', '3.14']
37+
python-version: ['3.10', '3.11', '3.12', '3.13', '3.14']
3838
pylint-version: [3.3.*, 3.*]
3939
runs-on: ubuntu-latest
4040
steps:

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ repos:
5151
entry: pyupgrade
5252
language: system
5353
types: [python]
54-
args: [--py39-plus]
54+
args: [--py310-plus]
5555
- id: tomlsort
5656
name: tomlsort
5757
entry: toml-sort

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# Changelog
22

3+
## 3.0.0
4+
- Removed support for python 3.9
5+
36
## 2.0.3
47
- Make glob patterns recursive
58

pyproject.toml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ classifiers = [
1515
"Operating System :: OS Independent",
1616
"Programming Language :: Python :: 3",
1717
"Programming Language :: Python :: 3 :: Only",
18-
"Programming Language :: Python :: 3.9",
1918
"Programming Language :: Python :: 3.10",
2019
"Programming Language :: Python :: 3.11",
2120
"Programming Language :: Python :: 3.12",
@@ -36,8 +35,8 @@ maintainers = [
3635
]
3736
name = "pylint-per-file-ignores"
3837
readme = "README.md"
39-
requires-python = ">=3.9,<4"
40-
version = "2.0.3"
38+
requires-python = ">=3.10,<4"
39+
version = "3.0.0"
4140

4241
[dependency-groups]
4342
dev = [
@@ -137,7 +136,7 @@ load-plugins = [
137136
"pylint.extensions.typing",
138137
]
139138
max-line-length = 100
140-
py-version = [3, 9]
139+
py-version = [3, 10]
141140

142141
[tool.pylint."messages control"]
143142
disable = [

0 commit comments

Comments
 (0)