Skip to content

Commit ec1ba94

Browse files
committed
[GR-34616] improve compat with twine
PullRequest: graalpython/2132
2 parents c17d029 + 66b652f commit ec1ba94

File tree

2 files changed

+14
-1
lines changed

2 files changed

+14
-1
lines changed
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
diff --git a/setup.cfg b/setup.cfg
2+
index b53f078..5c9d86e 100644
3+
--- a/setup.cfg
4+
+++ b/setup.cfg
5+
@@ -25,7 +25,7 @@ platforms = Linux
6+
[options]
7+
packages = secretstorage
8+
python_requires = >=3.6
9+
-install_requires = cryptography>=2.0; jeepney>=0.6
10+
+install_requires = cryptography==3.4.7; jeepney>=0.6
11+
12+
[options.package_data]
13+
secretstorage = py.typed

mx.graalpython/mx_graalpython.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1300,7 +1300,7 @@ def _python_checkpatchfiles():
13001300
content = listfile.read()
13011301
patchfile_pattern = re.compile(r"lib-graalpython/patches/([^/]+)/(sdist|whl)/.*\.patch")
13021302
checked = set()
1303-
allowed_licenses = ["MIT", "BSD", "BSD-3-Clause", "MIT license", "PSF"]
1303+
allowed_licenses = ["MIT", "BSD", "BSD-3-Clause", "BSD 3-Clause License", "MIT license", "PSF"]
13041304
for line in content.split("\n"):
13051305
match = patchfile_pattern.search(line)
13061306
if match:

0 commit comments

Comments
 (0)