Skip to content

Commit b85b7c3

Browse files
committed
chore: drop support for Python 3.7 and 3.8
1 parent 6167541 commit b85b7c3

2 files changed

Lines changed: 8 additions & 14 deletions

File tree

README.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ Installation
1515
python3 -m pip install kanboard
1616
1717
18-
This library is compatible with Python >= 3.7.
19-
20-
Note: **Support for Python 2.7 has been dropped since version 1.1.0.**
18+
- This library is compatible with Python >= 3.9.
19+
- Python 2.7 is no longer supported since version 1.1.0.
20+
- Python 3.7 and 3.8 are no longer supported since version 1.1.7.
2121

2222
On Fedora (36 and later), you can install the package using DNF:
2323

pyproject.toml

Lines changed: 5 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
[project]
22
name = "kanboard"
3-
version = "1.1.6"
4-
description = "Client library for Kanboard"
3+
version = "1.1.7"
4+
description = "Python client library for Kanboard"
55
readme = "README.rst"
6-
requires-python = ">=3.7"
7-
license = {file = "LICENSE"}
6+
requires-python = ">=3.9"
7+
license = "MIT"
8+
license-files = ["LICENSE"]
89
keywords = ["kanboard", "api", "client"]
910
authors = [
1011
{ name = "Frédéric Guillot", email = "fred@kanboard.net" }
@@ -14,13 +15,6 @@ classifiers = [
1415
"Intended Audience :: Information Technology",
1516
"License :: OSI Approved :: MIT License",
1617
"Programming Language :: Python",
17-
"Programming Language :: Python :: 3.7",
18-
"Programming Language :: Python :: 3.8",
19-
"Programming Language :: Python :: 3.9",
20-
"Programming Language :: Python :: 3.10",
21-
"Programming Language :: Python :: 3.11",
22-
"Programming Language :: Python :: 3.12",
23-
"Programming Language :: Python :: 3.13",
2418
"Programming Language :: Python :: 3 :: Only",
2519
]
2620

0 commit comments

Comments
 (0)