-
Notifications
You must be signed in to change notification settings - Fork 268
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
DOC: Add dedicated developers guide section
- Loading branch information
Showing
4 changed files
with
31 additions
and
6 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -32,6 +32,7 @@ dependencies: | |
- sphinx-design | ||
- sphinx-copybutton | ||
- nbsphinx | ||
- pre_commit | ||
- pip | ||
- pip: | ||
- pooch | ||
|
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
.. include:: ../../../CONTRIBUTING.rst |
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 |
---|---|---|
@@ -0,0 +1,23 @@ | ||
================= | ||
Developer's Guide | ||
================= | ||
|
||
.. toctree:: | ||
:maxdepth: 3 | ||
:hidden: | ||
|
||
CONTRIBUTING | ||
|
||
This discusses information relevant to developing Py-ART. | ||
|
||
-------- | ||
Versions | ||
-------- | ||
Py-ART follows `semantic versioning <https://semver.org>`_ in its version number. This means | ||
that any Py-ART ``1.x`` release will be backwards compatible with an earlier ``1.y`` release. By | ||
"backward compatible", we mean that **correct** code that works on a ``1.y`` version will work | ||
on a future ``1.x`` version. It's always possible for bug fixes to change behavior or make | ||
incorrect code cease to work. Backwards-incompatible changes will only be allowed when changing | ||
to version ``2.0``. Such changes will be proceeded by `FutureWarning` as appropriate. | ||
For a version ``1.x.y``, we change ``x`` when we release new features, and ``y`` | ||
when we make a release with only bug fixes. |
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