Skip to content

Commit

Permalink
Merge branch 'main' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
majsylw authored Dec 15, 2022
2 parents e573f05 + 5acac37 commit 678dcdb
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
image: python:3.10
steps:
- name: Packages
run: pip install tox
run: pip install 'tox<4'
- name: Checkout
uses: actions/checkout@v3
- name: Tox
Expand Down
13 changes: 10 additions & 3 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,19 @@
extensions = [
'sphinx.ext.autodoc',
'sphinx.ext.autosummary',
'numpydoc'
'numpydoc',
]

autodoc_mock_imports = [
'numpy', 'matplotlib', 'matplotlib.pyplot', 'scipy', 'scipy.integrate',
'scipy.interpolate', 'pyfftw', 'hdf5storage', 'tqdm'
'hdf5storage',
'matplotlib',
'matplotlib.pyplot',
'numpy',
'pyfftw',
'scipy',
'scipy.integrate',
'scipy.interpolate',
'tqdm',
]

autosummary_generate = True
Expand Down
2 changes: 1 addition & 1 deletion docs/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
numpydoc
sphinx_rtd_theme
rinohtype
pygments==2.5.1
pygments>=2.5.1

0 comments on commit 678dcdb

Please sign in to comment.