Skip to content

Commit 9f4e0ee

Browse files
committed
Issue #32: cleans up unused and badly named folders/files
- rename pyssp to ssp to match repo and package name - new developer folder with dev related files - renamed dev.md file to README_DEVEVELOPER.MD under new folder
1 parent d9f167e commit 9f4e0ee

16 files changed

+9
-13
lines changed

.github/workflows/ContinuousTesting.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
- name: Install Dependencies
1818
run: |
1919
python -m pip install --upgrade pip setuptools wheel
20-
pip install -r requirements-testing.txt
20+
pip install -r dev/requirements-testing.txt
2121
2222
- name: Static Lint
2323
run: |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

pyssp/routines.py

Lines changed: 0 additions & 9 deletions
This file was deleted.

requirements.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
-r requirements-basic.txt
2-
-r requirements-testing.txt
3-
-r requirements-dev.txt
1+
-r developer/requirements-basic.txt
2+
-r developer/requirements-testing.txt
3+
-r developer/requirements-dev.txt
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

pyssp/state.py renamed to ssp/state.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,3 +61,8 @@ def nywe(x: ArrayLike, p: int, q: int) -> NoReturn:
6161
def ndeterministic(x: ArrayLike, p: int, q: int) -> NoReturn:
6262
"""Normal Determenistic Systems of Equations."""
6363
raise NotImplementedError()
64+
65+
66+
def back_substitution(x: list[float], p: int) -> NoReturn:
67+
"""Convinient recursion for an all-pole model."""
68+
raise NotImplementedError()
File renamed without changes.

0 commit comments

Comments
 (0)