10000 fixed tests on python 2.7 · larray-project/larray@12c2b3d · GitHub
[go: up one dir, main page]

Skip to content

Commit 12c2b3d

Browse files
committed
fixed tests on python 2.7
pytest --deselect argument requires pytest 3.5+ and for whatever reason conda gave use an older version by default
1 parent 4f92307 commit 12c2b3d

File tree

2 files changed

+3
-52
lines changed

2 files changed

+3
-52
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ install:
4545
# (issue 702 : fixed bug when writing metadata using HDF format)
4646
- conda create -n travisci --yes python=${TRAVIS_PYTHON_VERSION:0:3}
4747
"numpy>=1.13" "pandas>=0.20" pytables matplotlib xlrd openpyxl
48-
xlsxwriter pytest pytest-pep8
48+
xlsxwriter "pytest>=3.5" pytest-pep8
4949
- source activate travisci
5050

5151
script:
Lines changed: 2 additions & 51 deletions
Original file line numberDiff line numberDiff line change
@@ -1,58 +1,9 @@
11
.. py:currentmodule:: larray
22

33

4-
Syntax changes
5-
^^^^^^^^^^^^^^
6-
7-
* renamed ``Array.old_method_name()`` to :py:obj:`Array.new_method_name()` (closes :issue:`1`).
8-
9-
* renamed ``old_argument_name`` argument of :py:obj:`Array.method_name()` to ``new_argument_name``.
10-
11-
12-
Backward incompatible changes
13-
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
14-
15-
* other backward incompatible changes
16-
17-
18-
New features
19-
^^^^^^^^^^^^
20-
21-
* added a feature (see the :ref:`miscellaneous section <misc>` for details). It works on :ref:`api-axis` and
22-
:ref:`api-group` objects.
23-
24-
Here is an example of the new feature:
25-
26-
>>> arr = ndtest((2, 3))
27-
>>> arr
28-
a\b b0 b1 b2
29-
a0 0 1 2
30-
a1 3 4 5
31-
32-
And it can also be used like this:
33-
34-
>>> arr = ndtest("a=a0..a2")
35-
>>> arr
36-
a a0 a1 a2
37-
0 1 2
38-
39-
* added another feature in the editor (closes :editor_issue:`1`).
40-
41-
.. note::
42-
43-
- It works for foo bar !
44-
- It does not work for foo baz !
45-
46-
47-
.. _misc:
48-
49-
Miscellaneous improvements
50-
^^^^^^^^^^^^^^^^^^^^^^^^^^
51-
52-
* improved something.
53-
54-
554
Fixes
565
^^^^^
576

587
* fixed using Pandas >= 1.0 (closes :issue:`845`).
8+
9+
* fixed a few issues for Python 2.7 and/or Linux.

0 commit comments

Comments
 (0)
0