Skip to content

Commit e995eef

Browse files
committed
Replace deprecated classifier with licence expression (PEP 639)
1 parent b1f7ba0 commit e995eef

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.ci/install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ if [[ $(uname) != CYGWIN* ]]; then
5050
# Pyroma uses non-isolated build and fails with old setuptools
5151
if [[ $GHA_PYTHON_VERSION == 3.9 ]]; then
5252
# To match pyproject.toml
53-
python3 -m pip install "setuptools>=67.8"
53+
python3 -m pip install "setuptools>=77"
5454
fi
5555

5656
# webp

pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[build-system]
22
build-backend = "backend"
33
requires = [
4-
"setuptools>=67.8",
4+
"setuptools>=77",
55
]
66
backend-path = [
77
"_custom_build",
@@ -14,14 +14,14 @@ readme = "README.md"
1414
keywords = [
1515
"Imaging",
1616
]
17-
license = { text = "MIT-CMU" }
17+
license = "MIT-CMU"
18+
license-files = [ "LICENSE" ]
1819
authors = [
1920
{ name = "Jeffrey A. Clark", email = "[email protected]" },
2021
]
2122
requires-python = ">=3.9"
2223
classifiers = [
2324
"Development Status :: 6 - Mature",
24-
"License :: OSI Approved :: CMU License (MIT-CMU)",
2525
"Programming Language :: Python :: 3 :: Only",
2626
"Programming Language :: Python :: 3.9",
2727
"Programming Language :: Python :: 3.10",

0 commit comments

Comments
 (0)