maketool 0.7.8__tar.gz → 0.7.9__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {maketool-0.7.8 → maketool-0.7.9}/PKG-INFO +1 -1
- {maketool-0.7.8 → maketool-0.7.9}/maketool/refscan.py +4 -4
- {maketool-0.7.8 → maketool-0.7.9}/maketool.egg-info/PKG-INFO +1 -1
- {maketool-0.7.8 → maketool-0.7.9}/pyproject.toml +1 -1
- {maketool-0.7.8 → maketool-0.7.9}/README.md +0 -0
- {maketool-0.7.8 → maketool-0.7.9}/maketool/__init__.py +0 -0
- {maketool-0.7.8 → maketool-0.7.9}/maketool/build.py +0 -0
- {maketool-0.7.8 → maketool-0.7.9}/maketool/clean.py +0 -0
- {maketool-0.7.8 → maketool-0.7.9}/maketool/compile.py +0 -0
- {maketool-0.7.8 → maketool-0.7.9}/maketool/run.py +0 -0
- {maketool-0.7.8 → maketool-0.7.9}/maketool/sublime.py +0 -0
- {maketool-0.7.8 → maketool-0.7.9}/maketool.egg-info/SOURCES.txt +0 -0
- {maketool-0.7.8 → maketool-0.7.9}/maketool.egg-info/dependency_links.txt +0 -0
- {maketool-0.7.8 → maketool-0.7.9}/maketool.egg-info/entry_points.txt +0 -0
- {maketool-0.7.8 → maketool-0.7.9}/maketool.egg-info/top_level.txt +0 -0
- {maketool-0.7.8 → maketool-0.7.9}/setup.cfg +0 -0
|
@@ -322,12 +322,12 @@ def print_missing_imports(entry: Path) -> None:
|
|
|
322
322
|
print("-" * len(title))
|
|
323
323
|
|
|
324
324
|
if packages_distributions is None:
|
|
325
|
-
print("
|
|
325
|
+
print("(skipped: Python 3.8+ required for packages_distributions())")
|
|
326
326
|
print()
|
|
327
327
|
return
|
|
328
328
|
|
|
329
329
|
if not entry.exists() or entry.suffix.lower() != ".py":
|
|
330
|
-
print("
|
|
330
|
+
print("(skipped: entry is not a .py file)")
|
|
331
331
|
print()
|
|
332
332
|
return
|
|
333
333
|
|
|
@@ -347,9 +347,9 @@ def print_missing_imports(entry: Path) -> None:
|
|
|
347
347
|
|
|
348
348
|
if missing:
|
|
349
349
|
for m in sorted(missing):
|
|
350
|
-
print(f"
|
|
350
|
+
print(f"{m}")
|
|
351
351
|
else:
|
|
352
|
-
print("
|
|
352
|
+
print("(none)")
|
|
353
353
|
print()
|
|
354
354
|
|
|
355
355
|
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|