Skip to content

Commit

Permalink
build: ship type stubs
Browse files Browse the repository at this point in the history
  • Loading branch information
winstxnhdw committed Oct 30, 2024
1 parent 552c738 commit ef10532
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion kbm/exceptions.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
class NegativeValueError(Exception):
class NegativeValueError(ValueError):
def __init__(self, argument: str) -> None:
super().__init__(f"{argument} must be positive.")
1 change: 1 addition & 0 deletions kbm/model/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
g
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ reinstall-package = ["scipath"]
scipath = { git = "https://github.com/winstxnhdw/scipath" }

[dependency-groups]
dev = ["cython>=3.0.11", "matplotlib>=3.9.2", "scipath", "setuptools>=75.3.0"]
dev = ["cython>=3.0.11", "matplotlib>=3.9.2", "scipath", "setuptools"]

[tool.ruff]
select = ["ALL"]
Expand Down

0 comments on commit ef10532

Please sign in to comment.