Skip to content

Commit d1004f1

Browse files
authored
pin bs4, bump version (#48)
version bump for pinned bs4.
1 parent 35cc964 commit d1004f1

3 files changed

Lines changed: 10 additions & 2 deletions

File tree

CHANGELOG.txt

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,14 @@
11
1.0
22
1.0 will be a complete api overhaul
33

4+
0.12.3
5+
* pin "BeautifulSoup4<4.15.0"
6+
* See `https://git.launchpad.net/beautifulsoup/tree/CHANGELOG`
7+
> 4.13.0 (20250202)
8+
> These things now give DeprecationWarnings when you try to use them,
9+
and are scheduled to be removed in Beautiful Soup 4.15.0.
10+
* fixes #47
11+
412
0.12.2
513
* Support Python 3.13 via `legacy-cgi` package.
614
Thank you, https://github.com/Dryusdan.

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
long_description = fp.read()
2828

2929
requires = [
30-
"BeautifulSoup4",
30+
"BeautifulSoup4<4.15.0",
3131
"requests>=2.19.1",
3232
"requests-toolbelt>=0.8.0",
3333
]

src/metadata_parser/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
# ==============================================================================
4747

4848

49-
__VERSION__ = "0.12.2"
49+
__VERSION__ = "0.12.3"
5050

5151

5252
# ------------------------------------------------------------------------------

0 commit comments

Comments
 (0)