We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8bacee1 commit 1c6a14bCopy full SHA for 1c6a14b
discovery.py
@@ -161,10 +161,8 @@ def inferred_deps():
161
and not imp.relative_to(best_name()).startswith(best_name())
162
]
163
for name, module in names:
164
- try:
165
- yield pypi.distribution_for(name) + extra_for(module)
166
- except Exception:
167
- print("Error resolving import", name, file=sys.stderr)
+ # TODO(#30): Handle resolution errors gracefully
+ yield pypi.distribution_for(name) + extra_for(module)
168
169
170
def combined_deps():
0 commit comments