Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Move to 2.0.0 RC 1 #375

Merged
merged 1 commit into from
Dec 13, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 21 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,15 +28,34 @@ The `pyrealm` package currently includes:
between carbon capture and water loss. This includes recent extensions to incorporate
the effects of water stress, slow acclimation processes, models of C3/C4 competition
and carbon isotope fractionation.
* The T Model of the allocation of gross primary productivity to estimate net primary
productivity and hence plant growth.
* The SPLASH model for calculating soil moisture and actual evapotranspiration.
* Initial components of a demography module for modelling plant functional types,
cohorts, communities and canopies, including allocation calculations using the T
Model.
* A suite of core physics functions and other utilities used to support the modules
above.

For more details, see the package website:
[https://pyrealm.readthedocs.io/](https://pyrealm.readthedocs.io/).

## Version 2.0.0 development

New functionality being implemented after version 1.0.0 has lead to some immediate
breaking changes in the API, for example in the handling of quantum yield settings in
the class signatures for the `PModel` and `SubdailyPModel`. As the package uses
[semantic versioning](https://semver.org/), these changes to the API require that new
releases be made under a new major version.

We will be publishing a series of "release candidates" of the 2.0.0 package. These will
be used to identify issues with the current API and try to stabilise a new API. The
content of version 2.0.0 is not yet finalised, so these release candidates may also add
new functionality.

We recommend that you update to the most recent release candidate of version 2.0.0. The
documentation now includes a [migration
guide](https://pyrealm.readthedocs.io/en/develop/users/versions.html) to help update
existing code.

## Using `pyrealm`

The `pyrealm` package requires Python 3 and the currently supported Python versions are:
Expand Down
33 changes: 21 additions & 12 deletions docs/source/_static/images/pyrealm_logo_master.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified docs/source/_static/images/pyrealm_logo_white_background.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ class MyReferenceStyle(AuthorYearReferenceStyle):
"version_selector": True,
"prev_next_buttons_location": "top",
"style_external_links": False,
"style_nav_header_background": "white",
"style_nav_header_background": "grey",
# Toc options
"collapse_navigation": False,
"sticky_navigation": True,
Expand Down
17 changes: 17 additions & 0 deletions docs/source/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,23 @@ The `demography` module
and respiration {cite:p}`Li:2014bc`. This module is still in active development but a
lot of initial functionality is present.

## Version 2.0.0 development

New functionality being implemented after version 1.0.0 has lead to some immediate
breaking changes in the API, for example in the handling of quantum yield settings in
the class signatures for the `PModel` and `SubdailyPModel`. As the package uses
[semantic versioning](https://semver.org/), these changes to the API require that new
releases be made under a new major version.

We will be publishing a series of "release candidates" of the 2.0.0 package. These will
be used to identify issues with the current API and try to stabilise a new API. The
content of version 2.0.0 is not yet finalised, so these release candidates may also add
new functionality.

We recommend that you update to the most recent release candidate of version 2.0.0. The
documentation now includes a [migration guide](users/versions.md) to help update
existing code.

## Indices and tables

* {ref}`genindex`
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ packages = [
]
readme = "README.md"
repository = "https://github.com/ImperialCollegeLondon/pyrealm"
version = "1.0.0"
version = "2.0.0-rc.1"

[tool.poetry.dependencies]
dacite = "^1.6.0"
Expand Down
Loading