forked from pybamm-team/PyBaMM
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove support for python 3.8 (pybamm-team#3961)
* Remove python 3.8 * More nox fixes * style: pre-commit fixes * Pre-commit * Pre-commit fixes * Changing Jax version * Temporary fix * Remove notes * Apply suggestions from code review Co-authored-by: Agriya Khetarpal <[email protected]> * Update .github/workflows/update_version.yml --------- Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> Co-authored-by: Agriya Khetarpal <[email protected]>
- Loading branch information
Showing
18 changed files
with
41 additions
and
78 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,7 +18,7 @@ license = { file = "LICENSE.txt" } | |
description = "Python Battery Mathematical Modelling" | ||
authors = [{name = "The PyBaMM Team", email = "[email protected]"}] | ||
maintainers = [{name = "The PyBaMM Team", email = "[email protected]"}] | ||
requires-python = ">=3.8, <3.13" | ||
requires-python = ">=3.9, <3.13" | ||
readme = {file = "README.md", content-type = "text/markdown"} | ||
classifiers = [ | ||
"Development Status :: 5 - Production/Stable", | ||
|
@@ -28,7 +28,6 @@ classifiers = [ | |
"Programming Language :: Python", | ||
"Programming Language :: Python :: 3", | ||
"Programming Language :: Python :: 3 :: Only", | ||
"Programming Language :: Python :: 3.8", | ||
"Programming Language :: Python :: 3.9", | ||
"Programming Language :: Python :: 3.10", | ||
"Programming Language :: Python :: 3.11", | ||
|
@@ -54,7 +53,6 @@ Releases = "https://github.com/pybamm-team/PyBaMM/releases" | |
Changelog = "https://github.com/pybamm-team/PyBaMM/blob/develop/CHANGELOG.md" | ||
|
||
[project.optional-dependencies] | ||
# For the generation of documentation | ||
docs = [ | ||
"sphinx>=6", | ||
"sphinx_rtd_theme>=0.5", | ||
|
@@ -77,15 +75,13 @@ docs = [ | |
examples = [ | ||
"jupyter", | ||
] | ||
# Plotting functionality | ||
plot = [ | ||
"imageio>=2.3.0", | ||
# Note: matplotlib is loaded for debug plots, but to ensure PyBaMM runs | ||
# on systems without an attached display, it should never be imported | ||
# outside of plot() methods. | ||
"matplotlib>=3.6.0", | ||
] | ||
# For the Citations class | ||
cite = [ | ||
"pybtex>=0.24.0", | ||
] | ||
|
@@ -97,7 +93,6 @@ bpx = [ | |
tqdm = [ | ||
"tqdm", | ||
] | ||
# Dependencies intended for use by developers | ||
dev = [ | ||
# For working with pre-commit hooks | ||
"pre-commit", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters