diff options
author | Leonard Richardson <leonardr@segfault.org> | 2023-01-28 16:46:10 -0500 |
---|---|---|
committer | Leonard Richardson <leonardr@segfault.org> | 2023-01-28 16:46:10 -0500 |
commit | bd3c7492d81440597d2a82cf6265bb68b53f1b84 (patch) | |
tree | 5145c124921f23e1331b3ec7acf7e255fa377141 /bs4/__init__.py | |
parent | a65a97e91ce9628bf0001fa40b5dc591288293c9 (diff) |
Incremented version number.
Diffstat (limited to 'bs4/__init__.py')
-rw-r--r-- | bs4/__init__.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/bs4/__init__.py b/bs4/__init__.py index 5ac28ee..db71cc7 100644 --- a/bs4/__init__.py +++ b/bs4/__init__.py @@ -7,7 +7,7 @@ Beautiful Soup uses a pluggable XML or HTML parser to parse a provides methods and Pythonic idioms that make it easy to navigate, search, and modify the parse tree. -Beautiful Soup works with Python 3.5 and up. It works better if lxml +Beautiful Soup works with Python 3.6 and up. It works better if lxml and/or html5lib is installed. For more than you ever wanted to know about Beautiful Soup, see the @@ -15,8 +15,8 @@ documentation: http://www.crummy.com/software/BeautifulSoup/bs4/doc/ """ __author__ = "Leonard Richardson (leonardr@segfault.org)" -__version__ = "4.11.1" -__copyright__ = "Copyright (c) 2004-2022 Leonard Richardson" +__version__ = "4.11.2" +__copyright__ = "Copyright (c) 2004-2023 Leonard Richardson" # Use of this source code is governed by the MIT license. __license__ = "MIT" |