Skip to content

Commit 9e6bf15

Browse files
committed
update versioning number
1 parent dd2086b commit 9e6bf15

File tree

6 files changed

+14
-3
lines changed

6 files changed

+14
-3
lines changed

.github/workflows/sphinx.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
- name: Copy latest version to stable
3737
run: |
3838
mkdir -p docs/build/html/stable
39-
cp -r docs/build/html/v1.0.0/* docs/build/html/stable
39+
cp -r docs/build/html/v1.0.21/* docs/build/html/stable
4040
- name: Deploy docs (all versions + stable alias)
4141
uses: peaceiris/actions-gh-pages@v3
4242
if: github.ref == 'refs/heads/main'

docs/source/_static/versions.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,9 @@
22
{
33
"version": "v1.0.0",
44
"url": "/pyshred/v1.0.0/"
5+
},
6+
{
7+
"version": "v1.0.21",
8+
"url": "/pyshred/v1.0.21/"
59
}
610
]

docs/source/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
copyright = '2025, Kutz Research Group'
1212
author = 'Kutz Research Group'
1313

14-
version = release = "v1.0.0"
14+
version = release = "v1.0.21"
1515

1616
# -- General configuration ---------------------------------------------------
1717
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# v1.0.0 — Fix Non-Functional Bugs
2+
3+
Released: 2025-06-25
4+
5+
PySHRED v1.0.21 fixes non-functional bugs mainly correcting the version number.

pyshred/__init__.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
__version__ = "v1.0.21"
2+
13
from .engine.engine import SHREDEngine
24
from .models.latent_forecaster_models.sindy import SINDy_Forecaster
35
from .models.latent_forecaster_models.lstm import LSTM_Forecaster

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
setup(
77
name="pyshred",
8-
version="v1.0.0",
8+
version="v1.0.21",
99
author="David Ye, Jan Williams, Mars Gao, Matteo Tomasetto, Stefano Riva, Nathan Kutz",
1010
author_email="pyshred1@gmail.com",
1111
description="PySHRED: Package for Shallow Recurrent Decoding",

0 commit comments

Comments
 (0)