Skip to content

Commit 4fed7d8

Browse files
fixed setuptools deprecation warnings
1 parent 1b04e58 commit 4fed7d8

File tree

4 files changed

+7
-22
lines changed

4 files changed

+7
-22
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
11
# Changelog
2+
## Pedantic 2.2.1
3+
- fixed `setuptools` deprecation warnings
4+
- delete unused scripts
5+
26
## Pedantic 2.2.0
37
- migrated from `setup.py` to `pyproject.toml`
48

build_wheel.bat

Lines changed: 0 additions & 7 deletions
This file was deleted.

get_coverage.bat

Lines changed: 0 additions & 11 deletions
This file was deleted.

pyproject.toml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
[build-system]
2-
requires = ["setuptools>=61.0", "wheel"]
2+
requires = ["setuptools>=80.9", "wheel"]
33
build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "pedantic"
7-
version = "2.2.0"
7+
version = "2.2.1"
88
description = "Some useful Python decorators for cleaner software development."
99
readme = "README.md"
1010
requires-python = ">=3.11"
11-
license = {text = "Apache-2.0 License"}
11+
license = "Apache-2.0"
1212
authors = [
1313
{name = "Willi Sontopski", email = "[email protected]"},
1414
]
@@ -18,7 +18,6 @@ maintainers = [
1818
keywords = ["decorators", "tools", "helpers", "type-checking", "pedantic", "type annotations"]
1919
classifiers = [
2020
"Programming Language :: Python :: 3",
21-
"License :: OSI Approved :: Apache Software License",
2221
"Operating System :: OS Independent",
2322
]
2423

0 commit comments

Comments
 (0)