Skip to content

Commit 817ac83

Browse files
authored
Merge pull request #4781 from pybamm-team/release/v25.1.1
Release v25.1.1
2 parents 590fdfe + 2e99a0e commit 817ac83

26 files changed

+146
-114
lines changed

.clang-format

Lines changed: 0 additions & 3 deletions
This file was deleted.

.github/codecov.yml

Whitespace-only changes.

.github/workflows/docker.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
password: ${{ secrets.DOCKERHUB_TOKEN }}
3131

3232
- name: Build and push Docker image to Docker Hub
33-
uses: docker/build-push-action@b32b51a8eda65d6793cd0494a773d4f6bcef32dc # v6.11.0
33+
uses: docker/build-push-action@67a2d409c0a876cbe6b11854e3e25193efe4e62d # v6.12.0
3434
with:
3535
context: .
3636
file: scripts/Dockerfile

.github/workflows/run_periodic_tests.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
if: matrix.os == 'ubuntu-latest'
3737
run: |
3838
sudo apt-get update
39-
sudo dot -c
39+
sudo apt-get install gfortran gcc graphviz pandoc
4040
sudo apt-get install libopenblas-dev texlive-latex-extra dvipng
4141
4242
- name: Install macOS system dependencies
@@ -100,6 +100,7 @@ jobs:
100100
- name: Install Linux system dependencies
101101
run: |
102102
sudo apt-get update
103+
sudo apt-get install graphviz pandoc
103104
sudo apt-get install texlive-latex-extra dvipng
104105
105106
- name: Set up Python
@@ -132,6 +133,7 @@ jobs:
132133
- name: Install Linux system dependencies
133134
run: |
134135
sudo apt-get update
136+
sudo apt-get install gfortran gcc graphviz pandoc
135137
sudo apt-get install libopenblas-dev texlive-latex-extra dvipng
136138
137139
- name: Set up Python 3.12
@@ -161,6 +163,7 @@ jobs:
161163
- name: Install Linux system dependencies
162164
run: |
163165
sudo apt-get update
166+
sudo apt-get install gfortran gcc graphviz
164167
sudo apt-get install libopenblas-dev texlive-latex-extra dvipng
165168
166169
- name: Set up Python 3.12

.github/workflows/update_license.yml

Lines changed: 0 additions & 39 deletions
This file was deleted.

.github/workflows/validation_benchmarks.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,9 @@
11
name: Alert validation repository
22
on:
3+
workflow_dispatch:
34
release:
45
types:
56
- published
6-
push:
7-
branches:
8-
- develop
97

108
jobs:
119
build:

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ ci:
44

55
repos:
66
- repo: https://github.com/astral-sh/ruff-pre-commit
7-
rev: "v0.9.1"
7+
rev: "v0.9.2"
88
hooks:
99
- id: ruff
1010
args: [--fix, --show-fixes]

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
# [Unreleased](https://github.com/pybamm-team/PyBaMM/)
22

3+
# [v25.1.1](https://github.com/pybamm-team/PyBaMM/tree/v25.1.1) - 2025-01-20
4+
5+
## Features
6+
7+
- Added Operators to current and voltage termination events. ([#4770](https://github.com/pybamm-team/PyBaMM/pull/4770))
8+
9+
## Bug fixes
10+
11+
- Fixed a bug which caused the wc-reaction limited SEI model to give
12+
incorrect results ([#4774](https://github.com/pybamm-team/PyBaMM/pull/4774))
13+
314
# [v25.1.0](https://github.com/pybamm-team/PyBaMM/tree/v25.1.0) - 2025-01-14
415

516
## Features

CITATION.cff

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,6 @@ keywords:
2424
- "expression tree"
2525
- "python"
2626
- "symbolic differentiation"
27-
version: "25.1.0"
27+
version: "25.1.1"
2828
repository-code: "https://github.com/pybamm-team/PyBaMM"
2929
title: "Python Battery Mathematical Modelling (PyBaMM)"

CONTRIBUTING.md

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -422,18 +422,13 @@ wherever code is called that uses that citation (for example, in functions or in
422422

423423
### Installation
424424

425-
Installation of PyBaMM and its dependencies is handled via [pip](https://pip.pypa.io/en/stable/) and [setuptools](http://setuptools.readthedocs.io/). It uses `CMake` to compile C++ extensions using [`pybind11`](https://pybind11.readthedocs.io/en/stable/) and [`casadi`](https://web.casadi.org/). The installation process is described in detail in the [source installation](https://docs.pybamm.org/en/latest/source/user_guide/installation/install-from-source.html) page and is configured through the `CMakeLists.txt` file.
425+
Installation of PyBaMM and its dependencies is handled via [pip](https://pip.pypa.io/en/stable/)
426426

427427
Configuration files:
428-
429428
```
430-
setup.py
431429
pyproject.toml
432-
MANIFEST.in
433430
```
434431

435-
Note: `MANIFEST.in` is used to include and exclude non-Python files and auxiliary package data for PyBaMM when distributing it. If a file is not included in `MANIFEST.in`, it will not be included in the source distribution (SDist) and subsequently not be included in the binary distribution (wheel).
436-
437432
### Continuous Integration using GitHub Actions
438433

439434
Each change pushed to the PyBaMM GitHub repository will trigger the test and benchmark suites to be run, using [GitHub Actions](https://github.com/features/actions).

0 commit comments

Comments
 (0)