Skip to content

Commit 6885bbd

Browse files
committed
Fix dependenices (#4602)
* Release patches * Add changelog * Update CHANGELOG.md
1 parent b50d4a9 commit 6885bbd

File tree

3 files changed

+10
-2
lines changed

3 files changed

+10
-2
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@
44

55
- 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))
66

7+
## Bug Fixes
8+
9+
- Added some dependencies which were left out of the `pyproject.toml` file ([#4602](https://github.com/pybamm-team/PyBaMM/pull/4602))
10+
711
# [v24.11.0](https://github.com/pybamm-team/PyBaMM/tree/v24.11.0) - 2024-11-20
812

913
## Features

noxfile.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -252,9 +252,11 @@ def run_tests(session):
252252
set_environment_variables(PYBAMM_ENV, session=session)
253253
session.install("setuptools", silent=False)
254254
session.install("-e", ".[all,dev,jax]", silent=False)
255-
specific_test_files = session.posargs if session.posargs else []
256255
session.run(
257-
"python", "-m", "pytest", *specific_test_files, "-m", "unit or integration"
256+
"python",
257+
"-m",
258+
"pytest",
259+
*(session.posargs if session.posargs else ["-m", "unit or integration"]),
258260
)
259261

260262

pyproject.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,8 @@ dependencies = [
4545
"pandas>=1.5.0",
4646
"pooch>=1.8.1",
4747
"posthog",
48+
"pyyaml",
49+
"platformdirs",
4850
]
4951

5052
[project.urls]

0 commit comments

Comments
 (0)