diff --git a/docs/sphinx/source/whatsnew/v0.11.3.rst b/docs/sphinx/source/whatsnew/v0.11.3.rst index 5a847c01de..9de087a0e8 100644 --- a/docs/sphinx/source/whatsnew/v0.11.3.rst +++ b/docs/sphinx/source/whatsnew/v0.11.3.rst @@ -32,6 +32,7 @@ Maintenance (:issue:`2357`, :pull:`2358`) * asv 0.4.2 upgraded to asv 0.6.4 to fix CI failure due to pinned older conda. (:pull:`2352`) +* Replaced the explicit `readme.text` and `readme.content-type` fields with `readme="README.md"` in `pyproject.toml`. (:pull:`2389`) Contributors @@ -40,3 +41,4 @@ Contributors * Mark Campanelli (:ghuser:`markcampanelli`) * Jason Lun Leung (:ghuser:`jason-rpkt`) * Manoj K S (:ghuser:`manojks1999`) +* Aditi Juneja (:ghuser:`Schefflera-Arboricola`) diff --git a/pyproject.toml b/pyproject.toml index 8464b7ce23..42ce7be230 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -28,20 +28,7 @@ classifiers = [ 'Programming Language :: Python :: 3', 'Topic :: Scientific/Engineering', ] -readme.text = """ -pvlib python is a community developed toolbox that provides a set of -functions and classes for simulating the performance of photovoltaic -energy systems and accomplishing related tasks. The core mission of pvlib -python is to provide open, reliable, interoperable, and benchmark -implementations of PV system models. - -We need your help to make pvlib-python a great tool! - -Documentation: http://pvlib-python.readthedocs.io - -Source code: https://github.com/pvlib/pvlib-python -""" -readme.content-type = "text/x-rst" +readme = "README.md" dynamic = ["version"]