Skip to content

Commit 6e8ec19

Browse files
committed
Move project to >= 3.9
- CI failed as we'd hoped and it's time to move to >= 3.9 cpython to match flake8 - Here we update all configuration and metadata etc. etc. This fixes "flake8_py_version_check" CI failing like: https://github.com/PyCQA/flake8-bugbear/actions/runs/14150950748/job/39644039034
1 parent 5ce49fa commit 6e8ec19

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
runs-on: ${{ matrix.os }}
1010
strategy:
1111
matrix:
12-
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
12+
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
1313

1414
os: [ubuntu-latest]
1515

README.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -475,6 +475,7 @@ Change Log
475475
UNRELEASED
476476
~~~~~~~~~~
477477

478+
* flake8-bugbear is now >= 3.9 project like flake8>=7.2.0
478479
* B028: Skip if skip_file_prefixes is used (#503)
479480

480481
24.12.12

pyproject.toml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@ classifiers = [
2626
"Operating System :: OS Independent",
2727
"Programming Language :: Python",
2828
"Programming Language :: Python :: 3",
29-
"Programming Language :: Python :: 3.8",
3029
"Programming Language :: Python :: 3.9",
3130
"Programming Language :: Python :: 3.10",
3231
"Programming Language :: Python :: 3.11",
@@ -36,8 +35,8 @@ classifiers = [
3635
"Topic :: Software Development :: Libraries :: Python Modules",
3736
"Topic :: Software Development :: Quality Assurance",
3837
]
39-
requires-python = ">=3.8.1"
40-
dependencies = ["flake8>=6.0.0", "attrs>=22.2.0"]
38+
requires-python = ">=3.9"
39+
dependencies = ["flake8>=7.2.0", "attrs>=22.2.0"]
4140
dynamic = ["version"]
4241

4342
[project.urls]

0 commit comments

Comments
 (0)