[DOCs][Dependencies] Removed extra spaces
This commit is contained in:
parent
482efbd81b
commit
3db94210cc
|
|
@ -112,7 +112,7 @@ Notes:
|
||||||
-  This is a Python module, not a separated tool.
|
-  This is a Python module, not a separated tool.
|
||||||
-  This is an independent tool, can be a binary or a Python script.
|
-  This is an independent tool, can be a binary or a Python script.
|
||||||
|
|
||||||
[**Distutils**](https://pypi.org/project/Distutils/) [](https://pypi.org/project/Distutils/)[](https://pypi.org/project/Distutils/) [](https://packages.debian.org/bullseye/python3-distutils)
|
[**Distutils**](https://pypi.org/project/Distutils/) [](https://pypi.org/project/Distutils/) [](https://packages.debian.org/bullseye/python3-distutils)
|
||||||
- Mandatory
|
- Mandatory
|
||||||
|
|
||||||
[**PyYAML**](https://pypi.org/project/PyYAML/) [](https://pypi.org/project/PyYAML/) [](https://pypi.org/project/PyYAML/) [](https://packages.debian.org/bullseye/python3-yaml)
|
[**PyYAML**](https://pypi.org/project/PyYAML/) [](https://pypi.org/project/PyYAML/) [](https://pypi.org/project/PyYAML/) [](https://packages.debian.org/bullseye/python3-yaml)
|
||||||
|
|
@ -138,7 +138,7 @@ Notes:
|
||||||
[**KiBoM**](https://github.com/INTI-CMNB/KiBoM) v1.8.0 [](https://github.com/INTI-CMNB/KiBoM) 
|
[**KiBoM**](https://github.com/INTI-CMNB/KiBoM) v1.8.0 [](https://github.com/INTI-CMNB/KiBoM) 
|
||||||
- Mandatory for `kibom`
|
- Mandatory for `kibom`
|
||||||
|
|
||||||
[**LXML**](https://pypi.org/project/LXML/) [](https://pypi.org/project/LXML/)[](https://pypi.org/project/LXML/) [](https://packages.debian.org/bullseye/python3-lxml)
|
[**LXML**](https://pypi.org/project/LXML/) [](https://pypi.org/project/LXML/) [](https://packages.debian.org/bullseye/python3-lxml)
|
||||||
- Mandatory for `pcb_print`
|
- Mandatory for `pcb_print`
|
||||||
|
|
||||||
[**QRCodeGen**](https://pypi.org/project/QRCodeGen/) [](https://pypi.org/project/QRCodeGen/) [](https://pypi.org/project/QRCodeGen/) [](https://packages.debian.org/bullseye/python3-qrcodegen)
|
[**QRCodeGen**](https://pypi.org/project/QRCodeGen/) [](https://pypi.org/project/QRCodeGen/) [](https://pypi.org/project/QRCodeGen/) [](https://packages.debian.org/bullseye/python3-qrcodegen)
|
||||||
|
|
|
||||||
|
|
@ -747,6 +747,7 @@ def print_dependencies(markdown=True, jsn=False):
|
||||||
has_dowloader = ' '+AUTO_DOWN if dep.downloader is not None else ''
|
has_dowloader = ' '+AUTO_DOWN if dep.downloader is not None else ''
|
||||||
if dep.is_python:
|
if dep.is_python:
|
||||||
url = 'https://pypi.org/project/{}/'.format(name)
|
url = 'https://pypi.org/project/{}/'.format(name)
|
||||||
|
if is_pypi_dep:
|
||||||
is_pypi_dep = ' [{}]({})'.format(is_pypi_dep, url)
|
is_pypi_dep = ' [{}]({})'.format(is_pypi_dep, url)
|
||||||
else:
|
else:
|
||||||
url = dep.url
|
url = dep.url
|
||||||
|
|
@ -770,10 +771,8 @@ def print_dependencies(markdown=True, jsn=False):
|
||||||
optional.append(r)
|
optional.append(r)
|
||||||
if r.version and (version is None or r.version > version):
|
if r.version and (version is None or r.version > version):
|
||||||
version = r.version
|
version = r.version
|
||||||
ver = ''
|
ver = ' v'+'.'.join(map(str, version)) if version else ''
|
||||||
if version:
|
print(name+ver+dtype+is_pypi_dep+deb+has_dowloader)
|
||||||
ver = 'v'+'.'.join(map(str, version))
|
|
||||||
print("{} {}{}{}{}{}".format(name, ver, dtype, is_pypi_dep, deb, has_dowloader))
|
|
||||||
if needed:
|
if needed:
|
||||||
if len(needed) == 1:
|
if len(needed) == 1:
|
||||||
if needed[0] == 'general use':
|
if needed[0] == 'general use':
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue