File tree Expand file tree Collapse file tree 5 files changed +7
-6
lines changed Expand file tree Collapse file tree 5 files changed +7
-6
lines changed Original file line number Diff line number Diff line change @@ -17,6 +17,7 @@ v1.5.1 (2016-07-25)
1717#. Fixed a numerical issue in ``dtw.py `` by explicit stating ``dtype=int `` in ``centers `` initializer, pure Python code only
1818#. Extension ``cew `` compiled for Mac OS X and Windows
1919#. Added links to installers for Mac OS X and Windows in the documentation
20+ #. Explicitly requiring lxml v3.6.0 and BeautifulSoup4 v4.4.1 due to a change in BeautifulSoup4 v4.5.0 API (to be investigated later)
2021
2122v1.5.0.3 (2016-04-23)
2223---------------------
Original file line number Diff line number Diff line change @@ -366,7 +366,7 @@ Examples:
366366
367367 python -m aeneas.tools.execute_task --example-json -r="c_extensions=False"
368368
369- #. disable only the ``cew `` Python C extension, while ``cdtw `` and ``cmfcc `` will stil run (if compiled)::
369+ #. disable only the ``cew `` Python C extension, while ``cdtw `` and ``cmfcc `` will still run (if compiled)::
370370
371371 python -m aeneas.tools.execute_task --example-json -r="cew=False"
372372
Original file line number Diff line number Diff line change 99Although a majority of ``aeneas `` users work with the built-in command line tools,
1010``aeneas `` is primarily designed for being used as a Python library.
1111Even the ``aeneas.tools `` can be used programmatically,
12- thanks to their standardize I/O interface.
12+ thanks to their standard I/O interface.
1313
1414.. Topic :: Example
1515
Original file line number Diff line number Diff line change 1- BeautifulSoup4 >= 4.4
2- lxml >= 3 .0
1+ BeautifulSoup4 == 4.4.1
2+ lxml == 3.6 .0
33numpy >= 1.9
Original file line number Diff line number Diff line change @@ -239,8 +239,8 @@ def prepare_cew_for_windows():
239239 license = "GNU Affero General Public License v3 (AGPL v3)" ,
240240 long_description = LONG_DESCRIPTION ,
241241 install_requires = [
242- "BeautifulSoup4>= 4.4" ,
243- "lxml>=3 .0" ,
242+ "BeautifulSoup4== 4.4.1 " ,
243+ "lxml==3.6 .0" ,
244244 "numpy>=1.9"
245245 ],
246246 extras_require = {
You can’t perform that action at this time.
0 commit comments