Skip to content

Commit 67c989e

Browse files
committed
Merge remote-tracking branch 'upstream/devel' into devel
2 parents 573929a + 212ffad commit 67c989e

File tree

5 files changed

+7
-6
lines changed

5 files changed

+7
-6
lines changed

docs/source/changelog.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff 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

2122
v1.5.0.3 (2016-04-23)
2223
---------------------

docs/source/clitutorial.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

docs/source/libtutorial.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Overview
99
Although 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.
1111
Even 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

requirements.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
BeautifulSoup4>=4.4
2-
lxml>=3.0
1+
BeautifulSoup4==4.4.1
2+
lxml==3.6.0
33
numpy>=1.9

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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={

0 commit comments

Comments
 (0)