Skip to content

Commit 15cb802

Browse files
committed
dropped support for python3.8
1 parent ac11689 commit 15cb802

File tree

3 files changed

+8
-7
lines changed

3 files changed

+8
-7
lines changed

.github/workflows/python-package.yaml

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,15 +17,10 @@ jobs:
1717
- macos-latest
1818
- windows-latest
1919
python-version:
20-
- "3.8"
2120
- "3.9"
2221
- "3.10"
2322
- "3.11"
2423
- "3.12"
25-
exclude:
26-
# 3.8 on windows fails due to some pip issue
27-
- os: windows-latest
28-
python-version: "3.8"
2924

3025
steps:
3126
- uses: actions/checkout@v3

CHANGELOG.md

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

3+
## [unreleased] -
4+
5+
* Dropped support for Python 3.8
6+
* silenced mypy warning for this issue:
7+
https://github.com/python/typeshed/pull/11841
8+
39
## [4.1.1] - 2024-06-09
410

511
* Bump version to upload to Debian/Sid

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ authors = [
1010
description = "Python interface to Debian's Bug Tracking System"
1111
readme = "README.md"
1212
license = { file="LICENSE" }
13-
requires-python = ">=3.8, <4"
13+
requires-python = ">=3.9, <4"
1414
classifiers = [
1515
"Development Status :: 5 - Production/Stable",
1616
"Intended Audience :: Developers",
@@ -61,7 +61,7 @@ addopts = """
6161

6262
[tool.ruff]
6363
line-length = 79
64-
target-version = "py38"
64+
target-version = "py39"
6565

6666
[tool.ruff.lint]
6767
select = [

0 commit comments

Comments
 (0)