Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d1b279b commit 9ad5ddaCopy full SHA for 9ad5dda
ci/check_wheel_licenses.py
@@ -21,8 +21,7 @@
21
dist_dir = project_dir / 'dist'
22
license_dir = project_dir / 'LICENSE'
23
24
-license_file_names = [Path(path).name
25
- for path in sorted(license_dir.glob('*'))]
+license_file_names = [path.name for path in sorted(license_dir.glob('*'))]
26
for wheel in dist_dir.glob('*.whl'):
27
print(f'Checking LICENSE files in: {wheel}')
28
with zipfile.ZipFile(wheel) as f:
0 commit comments