From 21f57c803a8bb7f22f72af7d64316d080c658a02 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ondrej=20Mosn=C3=A1=C4=8Dek?= Date: Tue, 16 Jan 2024 09:27:39 +0100 Subject: [PATCH] Use correct name for Beautiful Soup in dependencies MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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 --- requirements.txt | 2 +- tox.ini | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/requirements.txt b/requirements.txt index 480dc42cb..d6b0c6199 100644 --- a/requirements.txt +++ b/requirements.txt @@ -5,5 +5,5 @@ oauthlib requests_oauthlib requests-kerberos==0.14.0 jmespath -bs4 +beautifulsoup4 lxml diff --git a/tox.ini b/tox.ini index 1638b7389..b8c071931 100644 --- a/tox.ini +++ b/tox.ini @@ -11,7 +11,7 @@ deps = pytest-cov coverage requests - bs4 + beautifulsoup4 commands = coverage erase pytest -v --cov=atlassian --cov-branch --cov-report=xml