Skip to content

Commit aaf8599

Browse files
authored
Merge branch 'master' into patch-1
2 parents a017255 + 4bac694 commit aaf8599

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

.travis.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ before_install:
3535
- export LD_LIBRARY_PATH=$PY_LIBDIR:$LD_LIBRARY_PATH
3636

3737
install:
38+
- pip install --upgrade setuptools # TEMP - due to setuptools 36.2.0 bug
3839
- pip install --upgrade -r requirements.txt
3940
- coverage run setup.py install
4041

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ static void Main(string[] args)
6969
dynamic a = np.array(new List<float> { 1, 2, 3 });
7070
Console.WriteLine(a.dtype);
7171

72-
dynamic b = np.array(new List<float> { 6, 5, 4 }, dtype=np.int32);
72+
dynamic b = np.array(new List<float> { 6, 5, 4 }, dtype: np.int32);
7373
Console.WriteLine(b.dtype);
7474

7575
Console.WriteLine(a * b);

appveyor.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,11 +47,11 @@ test_script:
4747
on_finish:
4848
# Temporary disable multiple upload due to codecov limit of 20 per commit.
4949
# https://docs.codecov.io/blog/week-8-2017
50-
# - coverage xml -i
50+
- coverage xml -i
5151
# - codecov --file coverage.xml --flags setup_windows
5252
# - codecov --file py.coverage --flags python_tests
5353
# - codecov --file cs.coverage --flags embedded_tests
54-
- codecov --flags setup_windows
54+
- codecov --file py.coverage cs.coverage coverage.xml --flags setup_windows
5555

5656
artifacts:
5757
- path: dist\*

requirements.txt

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,10 @@
22
pytest
33
coverage
44

5+
# Coverage upload
6+
codecov
7+
58
# Platform specific requirements
69
pip; sys_platform == 'win32'
710
wheel; sys_platform == 'win32'
811
pycparser; sys_platform != 'win32'
9-
10-
# Coverage upload
11-
# codecov v2.0.6 isn't on PyPi
12-
https://github.com/codecov/codecov-python/tarball/v2.0.6

0 commit comments

Comments
 (0)