Skip to content

Commit d8e9ffd

Browse files
authored
Use correct name for Beautiful Soup in dependencies (#1296)
As noted at https://pypi.org/project/bs4/, the official name of the Beautiful Soup package is beautifulsoup4, while bs4 is just an alias. In distribution packaging (such as Fedora) the package may not be available under this alias, so it's better to use the official name. Signed-off-by: Ondrej Mosnáček <[email protected]>
1 parent 03fd007 commit d8e9ffd

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@ oauthlib
55
requests_oauthlib
66
requests-kerberos==0.14.0
77
jmespath
8-
bs4
8+
beautifulsoup4
99
lxml

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ deps =
1111
pytest-cov
1212
coverage
1313
requests
14-
bs4
14+
beautifulsoup4
1515
commands =
1616
coverage erase
1717
pytest -v --cov=atlassian --cov-branch --cov-report=xml

0 commit comments

Comments
 (0)