mirror of
https://github.com/Hopiu/linkchecker.git
synced 2026-03-17 06:20:27 +00:00
Require beautifulsoup4 instead of bs4
bs4 is a dummy package managed by the developer of Beautiful Soup to prevent name squatting. The official name of PyPI’s Beautiful Soup Python package is beautifulsoup4. The bs4 package ensures that if you type pip install bs4 by mistake you will end up with Beautiful Soup. However, for requirements, it's cleaner to use the proper name. For downstream packaging in Fedora, this avoids the need of packaging the dummy package.
This commit is contained in:
parent
e37dab8a4b
commit
ff5ebbae69
2 changed files with 2 additions and 2 deletions
|
|
@ -1,5 +1,5 @@
|
|||
# required:
|
||||
bs4
|
||||
beautifulsoup4
|
||||
requests >= 2.4
|
||||
pyxdg
|
||||
dnspython
|
||||
|
|
|
|||
2
setup.py
2
setup.py
|
|
@ -495,7 +495,7 @@ args = dict(
|
|||
install_requires = [
|
||||
'requests >= 2.4',
|
||||
'dnspython',
|
||||
'bs4',
|
||||
'beautifulsoup4',
|
||||
'pyxdg',
|
||||
'future',
|
||||
],
|
||||
|
|
|
|||
Loading…
Reference in a new issue