Skip to content

Commit

Permalink
all changes affection renaming from pyssp to ssp
Browse files Browse the repository at this point in the history
  • Loading branch information
mahdiolfat committed Feb 28, 2024
1 parent daa582e commit 6a4302a
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 11 deletions.
4 changes: 2 additions & 2 deletions examples/process_arma.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"outputs": [],
"source": [
"import os, sys\n",
"dir = os.path.abspath('../pyssp')\n",
"dir = os.path.abspath('../ssp')\n",
"dir = os.path.dirname(dir)\n",
"sys.path.append(dir)"
]
Expand All @@ -19,7 +19,7 @@
"outputs": [],
"source": [
"import numpy as np\n",
"from pyssp.system import ARMA\n",
"from ssp.system import ARMA\n",
"import matplotlib.pyplot as plt"
]
},
Expand Down
10 changes: 5 additions & 5 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ requires = ["hatchling"]
build-backend = "hatchling.build"

[project]
name = "pyssp"
name = "ssp"
version = "0.0.1"
readme = "README.md"
license = "LICENSE.txt"
Expand All @@ -13,11 +13,11 @@ pythonpath = "."
log_cli = true
addopts = [
"--import-mode=importlib",
"--cov=pyssp"
"--cov=ssp"
]

[tool.ruff]
include = ["pyssp/**"]
include = ["ssp/**"]

line-length = 100
indent-width = 4
Expand Down Expand Up @@ -50,11 +50,11 @@ skip-magic-trailing-comma = false
line-ending = "auto"

[tool.mypy]
mypy_path = "pyssp"
mypy_path = "ssp"
ignore_missing_imports = true
disallow_incomplete_defs = true
disallow_untyped_calls = true
disallow_untyped_defs = true
disallow_untyped_decorators = true
plugins = "numpy.typing.mypy_plugin"
files = ["pyssp/*.py"]
files = ["ssp/*.py"]
2 changes: 1 addition & 1 deletion tests/test_levinson.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import logging

import numpy as np
from pyssp import levinson
from ssp import levinson


logger = logging.getLogger(__name__)
Expand Down
2 changes: 1 addition & 1 deletion tests/test_modeling.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

import numpy as np
import scipy.signal as signal
from pyssp import modeling, system
from ssp import modeling, system


logger = logging.getLogger(__name__)
Expand Down
2 changes: 1 addition & 1 deletion tests/test_optimal.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
""""""

import numpy as np
from pyssp import optimal
from ssp import optimal


def test_kalman():
Expand Down
2 changes: 1 addition & 1 deletion tests/test_state.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

import numpy as np

from pyssp import state
from ssp import state


def test_convm():
Expand Down

0 comments on commit 6a4302a

Please sign in to comment.