File tree Expand file tree Collapse file tree 2 files changed +31
-33
lines changed Expand file tree Collapse file tree 2 files changed +31
-33
lines changed Original file line number Diff line number Diff line change @@ -27,43 +27,43 @@ jobs:
2727 runs-on : ${{ matrix.os }}
2828 strategy :
2929 matrix :
30- # os: ['ubuntu-latest', 'windows-latest', 'macos-latest']
31- # python-version: ['3.6', '3.7', '3.8', '3.9']
32- # architecture: ['x64', 'x86']
33- # install: ['setup']
34- # check: ['test']
35- # optional-depends: ['']
30+ os : ['ubuntu-latest', 'windows-latest', 'macos-latest']
31+ python-version : ['3.6', '3.7', '3.8', '3.9']
32+ architecture : ['x64', 'x86']
33+ install : ['setup']
34+ check : ['test']
35+ optional-depends : ['']
3636 include :
37- # - os: ubuntu-latest
38- # python-version: 3.8
39- # install: setup
40- # check: style
41- # optional-depends: ''
42- # - os: ubuntu-latest
43- # python-version: 3.8
44- # install: setup
45- # check: doc
46- # optional-depends: ''
37+ - os : ubuntu-latest
38+ python-version : 3.8
39+ install : setup
40+ check : style
41+ optional-depends : ' '
42+ - os : ubuntu-latest
43+ python-version : 3.8
44+ install : setup
45+ check : doc
46+ optional-depends : ' '
4747 - os : ubuntu-latest
4848 python-version : 3.8
4949 install : setup
5050 check : test
5151 optional-depends : ' numba pyqt5 mayavi pysurfer'
52- # - os: ubuntu-latest
53- # python-version: 3.8
54- # install: sdist
55- # check: test
56- # optional-depends: ''
57- # - os: ubuntu-latest
58- # python-version: 3.8
59- # install: wheel
60- # check: test
61- # optional-depends: ''
62- # exclude:
63- # - os: ubuntu-latest
64- # architecture: x86
65- # - os: macos-latest
66- # architecture: x86
52+ - os : ubuntu-latest
53+ python-version : 3.8
54+ install : sdist
55+ check : test
56+ optional-depends : ' '
57+ - os : ubuntu-latest
58+ python-version : 3.8
59+ install : wheel
60+ check : test
61+ optional-depends : ' '
62+ exclude :
63+ - os : ubuntu-latest
64+ architecture : x86
65+ - os : macos-latest
66+ architecture : x86
6767 env :
6868 INSTALL_TYPE : ${{ matrix.install }}
6969 CHECK_TYPE : ${{ matrix.check }}
Original file line number Diff line number Diff line change 33For testing netneurotools.plotting functionality
44"""
55
6- import matplotlib as mpl
7- mpl .use ('agg' )
86import matplotlib .pyplot as plt
97import numpy as np
108
You can’t perform that action at this time.
0 commit comments