Skip to content

Commit

Permalink
chore: bump requirements
Browse files Browse the repository at this point in the history
  • Loading branch information
alexfikl committed Jan 12, 2024
1 parent 073d080 commit d6d28ed
Show file tree
Hide file tree
Showing 4 changed files with 33 additions and 13 deletions.
2 changes: 2 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,7 @@ ignore = [
"N803", # invalid-argument-name
"N806", # non-lowercase-variable-in-function
"PLC0415", # import-outside-top-level
"PLC2801", # unnecessary-dunder-call
"PLR0912", # too-many-branches
"PLR0913", # too-many-arguments
"PLR0914", # too-many-locals
Expand All @@ -115,6 +116,7 @@ ignore = [
"S101", # assert
"S102", # exec-builtin
"S301", # suspicious-pickle-usage
"S403", # suspicious-pickle-import
"SIM108", # use-ternary-operator
"UP037", # quoted-annotation
]
Expand Down
40 changes: 29 additions & 11 deletions requirements-dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,22 @@
#
# pip-compile --extra=dev --extra=pyweno --extra=vis --output-file=requirements-dev.txt --strip-extras pyproject.toml
#
binaryornot==0.4.4
# via reuse
boolean-py==4.0
# via
# license-expression
# reuse
build==1.0.3
# via pip-tools
# via
# check-manifest
# pip-tools
chardet==5.2.0
# via
# binaryornot
# python-debian
check-manifest==0.49
# via pyshocks (pyproject.toml)
click==8.1.7
# via pip-tools
codespell==2.2.6
Expand All @@ -20,25 +34,31 @@ docutils==0.20.1
# via
# doc8
# restructuredtext-lint
fonttools==4.47.0
fonttools==4.47.2
# via matplotlib
iniconfig==2.0.0
# via pytest
jax==0.4.23
# via pyshocks (pyproject.toml)
jaxlib==0.4.23
# via pyshocks (pyproject.toml)
jinja2==3.1.3
# via reuse
kiwisolver==1.4.5
# via matplotlib
license-expression==30.2.0
# via reuse
markdown-it-py==3.0.0
# via rich
markupsafe==2.1.3
# via jinja2
matplotlib==3.8.2
# via
# pyshocks (pyproject.toml)
# scienceplots
mdurl==0.1.2
# via markdown-it-py
ml-dtypes==0.3.1
ml-dtypes==0.3.2
# via
# jax
# jaxlib
Expand Down Expand Up @@ -76,31 +96,31 @@ pip-tools==7.3.0
# via pyshocks (pyproject.toml)
pluggy==1.3.0
# via pytest
polib==1.2.0
# via sphinx-lint
pygments==2.17.2
# via
# doc8
# rich
pyparsing==3.1.1
# via matplotlib
pyproject-fmt==1.5.3
pyproject-fmt==1.6.0
# via pyshocks (pyproject.toml)
pyproject-hooks==1.0.0
# via build
pytest==7.4.4
# via pyshocks (pyproject.toml)
python-dateutil==2.8.2
# via matplotlib
python-debian==0.1.49
# via reuse
pyweno @ git+https://github.com/memmett/PyWENO.git
# via pyshocks (pyproject.toml)
regex==2023.12.25
# via sphinx-lint
restructuredtext-lint==1.4.0
# via doc8
reuse==2.1.0
# via pyshocks (pyproject.toml)
rich==13.7.0
# via pyshocks (pyproject.toml)
ruff==0.1.11
ruff==0.1.12
# via pyshocks (pyproject.toml)
scienceplots==2.1.1
# via pyshocks (pyproject.toml)
Expand All @@ -110,8 +130,6 @@ scipy==1.11.4
# jaxlib
six==1.16.0
# via python-dateutil
sphinx-lint==0.9.1
# via pyshocks (pyproject.toml)
stevedore==5.1.0
# via doc8
sympy==1.12
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ markdown-it-py==3.0.0
# via rich
mdurl==0.1.2
# via markdown-it-py
ml-dtypes==0.3.1
ml-dtypes==0.3.2
# via
# jax
# jaxlib
Expand Down
2 changes: 1 addition & 1 deletion src/pyshocks/sbp.py
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@
@dataclass(frozen=True)
class Stencil:
#: Interior stencil, as an array of shape ``(n_i,)``.
int: Array # noqa: A003
int: Array
#: Left boundary stencil, as an array of shape ``(n_l, m_l)``.
left: Array | None
#: Left boundary stencil, as an array of shape ``(n_r, m_r)``. If not
Expand Down

0 comments on commit d6d28ed

Please sign in to comment.