mirror of
https://github.com/tahoe-lafs/tahoe-lafs.git
synced 2025-04-14 06:06:40 +00:00
_auto_deps.py: update comment
This commit is contained in:
parent
346f1f5c8b
commit
7e4ca29e33
@ -23,11 +23,14 @@ def require_auto_deps():
|
||||
except pkg_resources.DistributionNotFound:
|
||||
# there is no .egg-info present for this requirement, which
|
||||
# either means that it isn't installed, or it is installed in
|
||||
# a way that setuptools can't find it (but regular python
|
||||
# a way that pkg_resources can't find it (but regular python
|
||||
# might). The __import__ below will pass the second case,
|
||||
# which is good enough for us. There are several
|
||||
# distributions which provide our dependencies just fine, but
|
||||
# they don't ship .egg-info files.
|
||||
# they don't ship .egg-info files. Note that if there *is* an
|
||||
# .egg-info file, but it indicates an older version, then
|
||||
# we'll get a VersionConflict error instead of
|
||||
# DistributionNotFound.
|
||||
pass
|
||||
for requirement in install_requires:
|
||||
reqparts = requirement.split()
|
||||
|
Loading…
x
Reference in New Issue
Block a user