From 359fccbdb3240d767d1ccd9070339382429f5bb3 Mon Sep 17 00:00:00 2001 From: Matthias Wolf Date: Thu, 18 Nov 2021 17:17:09 +0100 Subject: [PATCH] Use the proper beautifulsoup package (#120) From PyPI's description for `bs4`: > This package ensures that if you type pip install bs4 by mistake you > will end up with Beautiful Soup. Using the proper package makes packaging exhale a little simpler. --- requirements.txt | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/requirements.txt b/requirements.txt index 432ca19c..801d1e79 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,5 +1,5 @@ -bs4 # BeautifulSoup! -lxml # We need the lxml backend for BeautifulSoup. -sphinx>=1.6.1 # Exhale is a Sphinx extension. 1.6 introduces logging API. -breathe # The directives used for documentation come from the excellent Breathe. -six # Primarily for Unicode string types +beautifulsoup4 # BeautifulSoup! +lxml # We need the lxml backend for BeautifulSoup. +sphinx>=1.6.1 # Exhale is a Sphinx extension. 1.6 introduces logging API. +breathe # The directives used for documentation come from the excellent Breathe. +six # Primarily for Unicode string types