Skip to content

Commit 860824f

Browse files
committed
Merge branch 'mrcosts-clean' of https://github.com/klapo/PyDMD into mrcosts-clean
2 parents 02b7de3 + 380a735 commit 860824f

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

44 files changed

+4857
-4408
lines changed

.github/workflows/deploy_after_tag.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,11 +83,11 @@ jobs:
8383
- name: Create the new documentation
8484
uses: ammaraskar/sphinx-action@master
8585
with:
86-
pre-build-command: "python -m -U pip install pip .[docs]"
86+
pre-build-command: "python -m pip install -U pip .[docs]"
8787
docs-folder: "docs/"
8888
- name: Gather tutorials
8989
run: |
90-
cp docs/source/_tutorials/* docs/build/html
90+
sudo cp docs/source/_tutorials/* -v docs/build/html/
9191
- name: Deploy
9292
uses: peaceiris/actions-gh-pages@v3
9393
with:

.github/workflows/monthly-tag.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040

4141
- name: Create and push the tag
4242
run: |
43-
python utils/mathlab_versioning.py set --only-date "post$(date +%y%m)"
43+
python utils/mathlab_versioning.py set --only-date "dev$(date +%y%m)"
4444
cat pydmd/meta.py
4545
VERS=$(python utils/mathlab_versioning.py get)
4646
git config --global user.name 'Monthly Tag bot'

.github/workflows/testing_pr.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ jobs:
4646
- uses: actions/checkout@v3
4747
- name: Install black
4848
run: |
49-
pip install black[jupyter]
49+
pip install black[jupyter]==24.2.0
5050
5151
- name: Run black formatter on PyDMD source code
5252
run: |
@@ -122,7 +122,7 @@ jobs:
122122
python-version: ${{ matrix.python-version }}
123123
cache: 'pip'
124124
cache-dependency-path: setup.py
125-
125+
126126
- name: Install dependencies
127127
run: |
128128
pip install --upgrade pip

docs/source/_tutorials/tutorial12cdmd.html

Lines changed: 4248 additions & 4165 deletions
Large diffs are not rendered by default.

docs/source/_tutorials/tutorial15pidmd.html

Lines changed: 117 additions & 42 deletions
Large diffs are not rendered by default.

docs/source/_tutorials/tutorial16rdmd.html

Lines changed: 119 additions & 59 deletions
Large diffs are not rendered by default.

docs/source/_tutorials/tutorial19havok.html

Lines changed: 47 additions & 12 deletions
Large diffs are not rendered by default.

pydmd/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
"""
22
PyDMD init
33
"""
4+
45
__all__ = [
56
"dmdbase",
67
"dmd",

pydmd/cdmd.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
As a reference consult this work by Erichson, Brunton and Kutz:
44
https://doi.org/10.1007/s11554-016-0655-2
55
"""
6+
67
import numpy as np
78
import scipy.sparse
89
from scipy.linalg import sqrtm

pydmd/dmd_modes_tuner.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
A module which contains several functions to tune (i.e. improve) DMD instances
33
through the "manual" modification of DMD modes.
44
"""
5+
56
from copy import deepcopy
67
from functools import partial
78

0 commit comments

Comments
 (0)