aboutsummaryrefslogtreecommitdiff
path: root/databases/py-sqlcipher3/files/patch-pyproject.toml
blob: b95054b6593a7155c77d158fe44b8315d8c83ab3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
-- Fix invalid license format in pyproject.toml: plain string "MIT" is not
-- valid per PEP 639 / newer setuptools; must use {text = "..."} form.
--- pyproject.toml.orig	2024-01-01 00:00:00 UTC
+++ pyproject.toml
@@ -16,7 +16,7 @@
 authors = [
     { name = "Charles Leifer", email = "coleifer@gmail.com" },
     { name = "laggykiller", email = "chaudominic2@gmail.com" }
 ]
-license = "MIT"
+license = {text = "MIT"}
 classifiers = [