Skip to content

Commit ea4f3b7

Browse files
actions
1 parent faaf1f1 commit ea4f3b7

File tree

3 files changed

+26
-25
lines changed

3 files changed

+26
-25
lines changed

.github/workflows/style.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -27,13 +27,13 @@ jobs:
2727
python -m pip install scipy
2828
python -m pip install Pillow
2929
30-
- name: Fix code style with isort (import calls)
31-
run: |
32-
python -m pip install isort
33-
isort pyllusion -l 120 --balanced --multi-line 3 --lines-between-types 1 --lines-after-imports 2 --trailing-comma
30+
# - name: Fix code style with isort (import calls)
31+
# run: |
32+
# python -m pip install isort
33+
# isort pyllusion -l 120 --balanced --multi-line 3 --lines-between-types 1 --lines-after-imports 2 --trailing-comma
3434

35-
- name: Fix code style with docformatter (docstrings)
36-
run: |
37-
pip install docformatter
38-
# See https://github.com/myint/docformatter
39-
docformatter pyllusion --wrap-summaries 120 --wrap-descriptions 113 --blank --make-summary-multi-line --recursive
35+
# - name: Fix code style with docformatter (docstrings)
36+
# run: |
37+
# pip install docformatter
38+
# # See https://github.com/myint/docformatter
39+
# docformatter pyllusion --wrap-summaries 120 --wrap-descriptions 113 --blank --make-summary-multi-line --recursive

.github/workflows/tests.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,10 @@ jobs:
3232
- name: Install dependencies
3333
run: |
3434
python -m pip install --upgrade setuptools pip wheel
35-
python -m pip install tox
35+
python -m pip install numpy
36+
python -m pip install pandas
37+
python -m pip install scipy
38+
python -m pip install Pillow
3639
3740
- name: Test with tox
3841
run: |

docs/environment.yml

Lines changed: 13 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,16 @@
11
#channels:
22
# - conda-forge
33
dependencies:
4-
- python>=3.5
5-
#- sphinx>=1.4 # Get WIP version of sphinx with MD stuff
6-
- pip
7-
- pandoc
8-
- nbconvert
9-
- ipykernel
10-
- pip:
11-
- sphinx
12-
- git+git://github.com/mgeier/nbsphinx.git@master # Do change that when this is merged (https://github.com/spatialaudio/nbsphinx/pull/463)
13-
#- sphinx-nbexamples
14-
- git+https://github.com/Chilipp/sphinx-nbexamples.git@master # Use app.add_css_file for sphinx >= 3.0, change when https://github.com/Chilipp/sphinx-nbexamples is released
15-
- sphinx-gallery
16-
- sphinx-copybutton
17-
- recommonmark
18-
- m2r
4+
- python>=3.5
5+
#- sphinx>=1.4 # Get WIP version of sphinx with MD stuff
6+
- pip
7+
- pandoc
8+
- nbconvert
9+
- ipykernel
10+
- pip:
11+
- sphinx
12+
- nbsphinx
13+
- sphinx-gallery
14+
- sphinx-copybutton
15+
- recommonmark
16+
- m2r

0 commit comments

Comments
 (0)