File tree Expand file tree Collapse file tree 4 files changed +14
-5
lines changed Expand file tree Collapse file tree 4 files changed +14
-5
lines changed Original file line number Diff line number Diff line change 55
66## Bug Fixes
77
8+ # [ v24.3.1] ( https://github.com/pybop-team/PyBOP/tree/v24.3.1 ) - 2024-06-17
9+
10+ ## Features
11+
12+
13+ ## Bug Fixes
14+
15+ - [ #369 ] ( https://github.com/pybop-team/PyBOP/pull/369 ) - Upper pins Numpy < 2.0 due to breaking Pints' functionality.
16+
817# [ v24.3] ( https://github.com/pybop-team/PyBOP/tree/v24.3 ) - 2024-03-25
918
1019## Features
Original file line number Diff line number Diff line change @@ -11,5 +11,5 @@ authors:
1111 family-names : Courtier
1212 - given-names : David
1313 family-names : Howey
14- version : " 23.12 " # Update this when you release a new version
14+ version : " 24.3.1 " # Update this when you release a new version
1515repository-code : ' https://www.github.com/pybop-team/pybop'
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44
55[project ]
66name = " pybop"
7- version = " 24.3"
7+ version = " 24.3.1 "
88authors = [
99 {name = " The PyBOP Team" },
1010]
@@ -19,7 +19,7 @@ classifiers = []
1919requires-python = " >=3.8, <3.13"
2020dependencies = [
2121 " pybamm>=23.5" ,
22- " numpy>=1.16" ,
22+ " numpy>=1.16, <2.0 " ,
2323 " scipy>=1.3" ,
2424 " pints>=0.5" ,
2525]
Original file line number Diff line number Diff line change 11import subprocess
2- from distutils .spawn import find_executable
32from importlib .metadata import distributions
3+ from shutil import which
44
55import numpy as np
66import plotly
1010from pybop import PlotlyManager
1111
1212# Find the Python executable
13- python_executable = find_executable ("python" )
13+ python_executable = which ("python" )
1414
1515
1616@pytest .fixture (scope = "session" )
You can’t perform that action at this time.
0 commit comments