Skip to content

Commit

Permalink
Fix dependenices (pybamm-team#4602)
Browse files Browse the repository at this point in the history
* Release patches

* Add changelog

* Update CHANGELOG.md
  • Loading branch information
kratman committed Nov 22, 2024
1 parent b50d4a9 commit 6885bbd
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@

- Modified `quick_plot.plot` to accept a list of times and generate superimposed graphs for specified time points. ([#4529](https://github.com/pybamm-team/PyBaMM/pull/4529))

## Bug Fixes

- Added some dependencies which were left out of the `pyproject.toml` file ([#4602](https://github.com/pybamm-team/PyBaMM/pull/4602))

# [v24.11.0](https://github.com/pybamm-team/PyBaMM/tree/v24.11.0) - 2024-11-20

## Features
Expand Down
6 changes: 4 additions & 2 deletions noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -252,9 +252,11 @@ def run_tests(session):
set_environment_variables(PYBAMM_ENV, session=session)
session.install("setuptools", silent=False)
session.install("-e", ".[all,dev,jax]", silent=False)
specific_test_files = session.posargs if session.posargs else []
session.run(
"python", "-m", "pytest", *specific_test_files, "-m", "unit or integration"
"python",
"-m",
"pytest",
*(session.posargs if session.posargs else ["-m", "unit or integration"]),
)


Expand Down
2 changes: 2 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,8 @@ dependencies = [
"pandas>=1.5.0",
"pooch>=1.8.1",
"posthog",
"pyyaml",
"platformdirs",
]

[project.urls]
Expand Down

0 comments on commit 6885bbd

Please sign in to comment.