diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index cf20906d..c2b588f2 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -76,7 +76,7 @@ jobs: with: api_key: ${{ secrets.FORESIGHT_API_KEY }} - run: | - python -m pip install --upgrade wheel invoke parver bs4 vistir towncrier requests parse + python -m pip install --upgrade wheel invoke parver beautifulsoup4 vistir towncrier requests parse python -m invoke vendoring.update tests: name: ${{matrix.os}} / ${{ matrix.python-version }} diff --git a/Pipfile.lock b/Pipfile.lock index c1d682d7..753d6539 100644 --- a/Pipfile.lock +++ b/Pipfile.lock @@ -92,12 +92,6 @@ "markers": "python_version >= '3.7'", "version": "==23.1.0" }, - "bs4": { - "hashes": [ - "sha256:36ecea1fd7cc5c0c6e4a1ff075df26d50da647b75376626cc186e2212886dd3a" - ], - "version": "==0.0.1" - }, "certifi": { "hashes": [ "sha256:35824b4c3a97115964b408844d64aa14db1cc518f6562e8d7261699d1350a9e3", diff --git a/news/5620.trivial.rst b/news/5620.trivial.rst new file mode 100644 index 00000000..e3f1cf07 --- /dev/null +++ b/news/5620.trivial.rst @@ -0,0 +1 @@ +Use beautifulsoup4 as a dependency, not the bs4 redirect. diff --git a/setup.py b/setup.py index 6a80e035..b16c9b84 100644 --- a/setup.py +++ b/setup.py @@ -28,7 +28,7 @@ required = [ extras = { "dev": [ "towncrier", - "bs4", + "beautifulsoup4", "sphinx", "flake8>=3.3.0,<4.0", "black;python_version>='3.7'",