diff options
author | Leonard Richardson <leonardr@segfault.org> | 2015-07-03 10:29:48 -0400 |
---|---|---|
committer | Leonard Richardson <leonardr@segfault.org> | 2015-07-03 10:29:48 -0400 |
commit | 5881585f01efc14e1736f3056366d290a1498635 (patch) | |
tree | 3ba29a4ea8f72381849da65007012cb3bf335ac0 /NEWS.txt | |
parent | fdfe4bfbfe66420cd33b318d033de09a35649416 (diff) |
Change setup.py to focus on creating wheels.
Diffstat (limited to 'NEWS.txt')
-rw-r--r-- | NEWS.txt | 12 |
1 files changed, 11 insertions, 1 deletions
@@ -1,7 +1,17 @@ -= 4.4.0 (Unreleased) = += 4.4.0 (20150703) = Especially important changes: +* Currently lxml is a mandatory dependency of Beautiful Soup when + installed via pip. In the near future, lxml will become an optional + dependency. Requiring lxml makes it more difficult to install + Beautiful Soup, and recent improvements to Python's built-in HTML + parser make it good enough to serve as the default. + + If you install Beautiful Soup via a requirements.txt file and you + still want Beautiful Soup to use lxml as its parser (you probably + do), you should add 'lxml' to the list of requirements. + * Added a warning when you instantiate a BeautifulSoup object without explicitly naming a parser. [bug=1398866] |