You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/PULL_REQUEST_TEMPLATE.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,7 @@
1
1
<!-- Thank you for your contribution! The following items must be addressed before the code can be merged. Please don't hesitate to ask for help if you're unsure of how to accomplish any of the items. Feel free to remove checklist items that are not relevant to your change. -->
2
2
3
3
-[ ] Closes #xxxx
4
-
-[ ] I am familiar with the [contributing guidelines](https://pvlib-python.readthedocs.io/en/latest/contributing.html)
4
+
-[ ] I am familiar with the [contributing guidelines](https://pvlib-python.readthedocs.io/en/latest/contributing/index.html)
5
5
-[ ] Tests added
6
6
-[ ] Updates entries in [`docs/sphinx/source/reference`](https://github.com/pvlib/pvlib-python/blob/main/docs/sphinx/source/reference) for API changes.
7
7
-[ ] Adds description and name entries in the appropriate "what's new" file in [`docs/sphinx/source/whatsnew`](https://github.com/pvlib/pvlib-python/tree/main/docs/sphinx/source/whatsnew) for all changes. Includes link to the GitHub Issue with `` :issue:`num` `` or this Pull Request with `` :pull:`num` ``. Includes contributor name and/or GitHub username (link with `` :ghuser:`user` ``).
Copy file name to clipboardExpand all lines: docs/sphinx/source/contributing/style_guide.rst
+188-2Lines changed: 188 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -13,7 +13,7 @@ pvlib python generally follows the `PEP 8 -- Style Guide for Python Code
13
13
is 79 characters.
14
14
15
15
pvlib python uses a mix of full and abbreviated variable names. See
16
-
:ref:`variables_style_rules`. We could be better about consistency.
16
+
:ref:`nomenclature`.
17
17
Prefer full names for new contributions. This is especially important
18
18
for the API. Abbreviations can be used within a function to improve the
19
19
readability of formulae.
@@ -90,6 +90,82 @@ When specifying parameters and their units, please follow these guidelines:
90
90
dni : numeric
91
91
Direct normal irradiance, see :term:`dni`. [Wm⁻²]
92
92
93
+
94
+
.. _reference_style:
95
+
96
+
References
97
+
----------
98
+
pvlib-python is transitioning to the `IEEE reference style <https://journals.ieeeauthorcenter.ieee.org/wp-content/uploads/sites/7/IEEE_Reference_Guide.pdf>`_,
99
+
which should be used in all new contributions. At minimum, a reference should
100
+
include:
101
+
102
+
* Author list (for more than six authors, list only the first with et al.)
0 commit comments