@@ -5,11 +5,11 @@ How to contribute?
55==================
66
77Contributions of any size are highly appreciated! You can make
8- a significant impact on ProPlot just by using it and
8+ a significant impact on proplot just by using it and
99reporting `issues <https://github.com/lukelbd/proplot/issues >`__.
1010
1111The following sections cover some general guidelines
12- regarding development in ProPlot for contributors.
12+ regarding development in proplot for contributors.
1313Feel free to suggest improvements or changes in the workflow.
1414
1515Feature requests and feedback
@@ -41,13 +41,13 @@ Write tests
4141
4242Most modern python packages have ``test_*.py `` scripts that are run by `pytest `
4343via the `Travis Continuous Integration <https://travis-ci.com >`__ service
44- whenever commits are pushed to the repository. Currently, ProPlot only tests
44+ whenever commits are pushed to the repository. Currently, proplot only tests
4545the examples that appear on the website User Guide (see `.travis.yml `). While we
4646try to make the examples comprehensive, this approach leaves out a lot of use
4747cases and leaves the project more vulnerable to bugs. Adding tests is a
4848*critical * item on our to-do list.
4949
50- If you can think of a useful test for ProPlot , feel free to submit a pull request.
50+ If you can think of a useful test for proplot , feel free to submit a pull request.
5151Your test will be used in the future.
5252
5353
@@ -71,7 +71,7 @@ documentation files directly in the GitHub web interface without using a local c
7171 is ``py:obj ``. Please include ``py:obj `` links whenever discussing particular
7272 functions or classes -- for example, if you are discussing the
7373 `~proplot.axes.Axes.format ` method, please write ```~proplot.axes.Axes.format` ``
74- rather than ``format ``. ProPlot also uses
74+ rather than ``format ``. Proplot also uses
7575 `intersphinx <http://www.sphinx-doc.org/en/stable/ext/intersphinx.html >`__ so you can
7676 link to external packages like matplotlib and cartopy.
7777
@@ -113,7 +113,7 @@ Here is a quick guide for submitting pull requests:
113113 If you need some help with git, follow the
114114 `quick start guide <https://git.wiki.kernel.org/index.php/QuickStart >`__.
115115
116- #. Make an editable install of ProPlot by running:
116+ #. Make an editable install of proplot by running:
117117
118118 .. code-block :: bash
119119
@@ -194,18 +194,18 @@ Here is a quick guide for submitting pull requests:
194194 base: master
195195
196196 Note that you can create the pull request before you're finished with your
197- feature addition or bug fix. The PR will update as you add more commits. ProPlot
197+ feature addition or bug fix. The PR will update as you add more commits. Proplot
198198developers and contributors can then review your code and offer suggestions.
199199
200200
201201Release procedure
202202=================
203203
204- Once version 1.0 is released, ProPlot will follow semantic versioning, with version
204+ Once version 1.0 is released, proplot will follow semantic versioning, with version
205205numbers that look like ``vX.Y.Z ``. A major version (``X ``) causes incompatible
206206API changes, a minor version (``Y ``) adds functionality, and a patch (``Z ``) covers
207207bug fixes. But these are not strict rules -- more like guidelines.
208- Currently, ProPlot 's major version number is ``0 ``, reflecting the fact that
208+ Currently, proplot 's major version number is ``0 ``, reflecting the fact that
209209the API is new and subject to rapid changes (although we try to make sure the
210210changes are not without warning).
211211
0 commit comments