Skip to content

Commit f5645e8

Browse files
committed
[CI] Add missing matplolib dep
1 parent 2f43c34 commit f5645e8

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.github/workflows/pythonpackage.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
pylint --rcfile=.pylintrc nixio
3838
- name: Test with pytest
3939
run: |
40-
pip install pytest scipy pillow
40+
pip install pytest scipy pillow matplotlib
4141
# pytest will skip cross-compatibility tests since NIX isn't installed
4242
pytest
4343
@@ -69,7 +69,7 @@ jobs:
6969
- name: Install Python dependencies
7070
run: |
7171
python setup.py install
72-
pip install pytest scipy pillow
72+
pip install pytest scipy pillow matplotlib
7373
- name: Run tests
7474
run: |
7575
pytest
@@ -86,7 +86,7 @@ jobs:
8686
- name: Install dependencies
8787
run: |
8888
python setup.py install
89-
pip install pytest coveralls scipy pillow
89+
pip install pytest coveralls scipy pillow matplotlib
9090
- name: Create coverage
9191
run: |
9292
coverage run --source=nixio -m pytest nixio/test/
@@ -107,7 +107,7 @@ jobs:
107107
- name: Install dependencies
108108
run: |
109109
python setup.py install
110-
pip install pytest pytest-cov scipy pillow
110+
pip install pytest pytest-cov scipy pillow matplotlib
111111
- name: Create coverage
112112
run: |
113113
pytest --cov=./ --cov-report=xml

appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ install:
6060
# - cd ..
6161
- python -m pip install certifi
6262
- python -m pip install -U pip wheel
63-
- python -m pip install numpy h5py pytest-xdist scipy pillow
63+
- python -m pip install numpy h5py pytest-xdist scipy pillow matplotlib
6464
- ps: cd "$env:APPVEYOR_BUILD_FOLDER"
6565
- set DISTUTILS_USE_SDK="1"
6666
- set MSSdk="1"

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ def get_wheel_data():
7373
license='BSD',
7474
packages=packages,
7575
scripts=[],
76-
tests_require=['pytest', 'scipy', 'pillow'],
76+
tests_require=['pytest', 'scipy', 'pillow', 'matplotlib'],
7777
test_suite='pytest',
7878
setup_requires=['pytest-runner'],
7979
install_requires=['numpy', 'h5py', 'six', 'enum34;python_version<"3.4"'],

0 commit comments

Comments
 (0)