Skip to content

Commit

Permalink
Merge pull request pybamm-team#3674 from pybamm-team/v24.1
Browse files Browse the repository at this point in the history
Sync v24.1 and develop
  • Loading branch information
Saransh-cpp authored Jan 9, 2024
2 parents 6173f16 + 0580f06 commit cf2203c
Show file tree
Hide file tree
Showing 9 changed files with 12 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/release_reminder.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
title: Create {{ date | date('YY.MM') }} (final or rc0) release
labels: priority:high
labels: "priority: high"
---
Quarterly reminder to create a -

Expand Down
2 changes: 1 addition & 1 deletion .github/wheel_failure.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
title: Fortnightly build for wheels failed
labels: priority:high, bug
labels: "priority: high, bug"
---

The build is failing with the following logs - {{ env.LOGS }}
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# [Unreleased](https://github.com/pybamm-team/PyBaMM/)

# [v24.1rc0](https://github.com/pybamm-team/PyBaMM/tree/v24.1rc0) - 2024-01-31

## Features

- The `pybamm_install_odes` command now includes support for macOS systems and can be used to set up SUNDIALS and install the `scikits.odes` solver on macOS ([#3417](https://github.com/pybamm-team/PyBaMM/pull/3417))
Expand Down
2 changes: 1 addition & 1 deletion CITATION.cff
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,6 @@ keywords:
- "expression tree"
- "python"
- "symbolic differentiation"
version: "23.9"
version: "24.1rc0"
repository-code: "https://github.com/pybamm-team/PyBaMM"
title: "Python Battery Mathematical Modelling (PyBaMM)"
2 changes: 1 addition & 1 deletion pybamm/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "23.9"
__version__ = "24.1rc0"
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "pybamm"
version = "23.9"
version = "24.1rc0"
license = { file = "LICENSE.txt" }
description = "Python Battery Mathematical Modelling"
authors = [{name = "The PyBaMM Team", email = "[email protected]"}]
Expand Down
4 changes: 3 additions & 1 deletion scripts/update_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,9 @@ def update_version():
# pyproject.toml
with open(os.path.join(pybamm.root_dir(), "pyproject.toml"), "r+") as file:
output = file.read()
replace_version = re.sub('(?<=version = ")(.+)(?=")', release_version, output)
replace_version = re.sub(
r'(?<=\bversion = ")(.+)(?=")', release_version, output
)
file.truncate(0)
file.seek(0)
file.write(replace_version)
Expand Down
2 changes: 1 addition & 1 deletion vcpkg-configuration.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
{
"kind": "git",
"repository": "https://github.com/pybamm-team/sundials-vcpkg-registry.git",
"baseline": "af9f5e4bc730bf2361c47f809dcfb733e7951faa",
"baseline": "13d432fcf5da8591bb6cb2d46be9d6acf39cd02b",
"packages": ["sundials"]
},
{
Expand Down
2 changes: 1 addition & 1 deletion vcpkg.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "pybamm",
"version-string": "23.9",
"version-string": "24.1rc0",
"dependencies": [
"casadi",
{
Expand Down

0 comments on commit cf2203c

Please sign in to comment.