Skip to content

Commit

Permalink
Merge branch 'develop' into basic-experiments
Browse files Browse the repository at this point in the history
  • Loading branch information
rtimms authored May 7, 2024
2 parents df61b36 + 670b66c commit a14400c
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/run_periodic_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ jobs:

- name: Upload coverage report
if: matrix.os == 'ubuntu-latest' && matrix.python-version == 3.11
uses: codecov/[email protected].0
uses: codecov/[email protected].1
with:
token: ${{ secrets.CODECOV_TOKEN }}

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test_on_push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ jobs:
run: python -m nox -s coverage

- name: Upload coverage report
uses: codecov/[email protected].0
uses: codecov/[email protected].1
with:
token: ${{ secrets.CODECOV_TOKEN }}

Expand Down
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ ci:

repos:
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: "v0.4.2"
rev: "v0.4.3"
hooks:
- id: ruff
args: [--fix, --show-fixes]
Expand Down
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,8 @@ If you'd like to help us develop PyBaMM by adding new methods, writing documenta

## 📫 Get in touch

For any questions, comments, suggestions or bug reports, please see the [contact page](https://www.pybamm.org/contact).
For any questions, comments, suggestions or bug reports, please see the
[contact page](https://www.pybamm.org/community).

## 📃 License

Expand Down
3 changes: 1 addition & 2 deletions pybamm/plotting/plot_voltage_components.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,7 @@ def plot_voltage_components(
Whether to show the plots. Default is True. Set to False if you want to
only display the plot after plt.show() has been called.
kwargs_fill
Keyword arguments, passed to ax.fill_between
Keyword arguments: :obj:`matplotlib.axes.Axes.fill_between`
"""
# Check if the input is a Simulation and extract Solution
if isinstance(input_data, Simulation):
Expand Down

0 comments on commit a14400c

Please sign in to comment.