diff options
author | Brad Cowie <brad@wand.net.nz> | 2020-05-12 16:35:21 +1200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-12 16:35:21 +1200 |
commit | 7dad6e1e4b9c606526773f6f79ff82bbed40c491 (patch) | |
tree | e6160b0e3bc93f0d814565bc6975278e28b3c59c | |
parent | c34337684964029ffd4fc5653633892863942fd6 (diff) | |
parent | 10a9f79c6a17038c00200a9b81040b7dc7fe3005 (diff) |
Merge pull request #90 from gizmoguy/contributing
Update how to contribute to Ryu.
-rw-r--r-- | CONTRIBUTING.rst | 18 |
1 files changed, 3 insertions, 15 deletions
diff --git a/CONTRIBUTING.rst b/CONTRIBUTING.rst index 11387509..f57d074f 100644 --- a/CONTRIBUTING.rst +++ b/CONTRIBUTING.rst @@ -5,20 +5,8 @@ How to Get Your Change Into Ryu Submitting a change =================== -Send patches to ryu-devel@lists.sourceforge.net. Please don't use "Pull -Request" on GitHub. We expect you to send patches in "git-format-patch" -style. - -.. code-block:: bash - - # "N" means the number of commits to be included - $ git format-patch -s HEAD~N - - # To add cover (e.g., [PATCH 0/X]), specify "--cover-letter" option - $ git format-patch -s --cover-letter HEAD~N - - # You can send patches by "git send-email" command - $ git send-email --to="ryu-devel@lists.sourceforge.net" *.patch +To send patches to ryu, please make a +`pull request <https://github.com/faucetsdn/ryu>`_ on GitHub. Please check your changes with autopep8, pycodestyle(pep8) and running unit tests to make sure that they don't break the existing features. @@ -42,7 +30,7 @@ features (it's not a must though). Python version and libraries ============================ -* Python 2.7, 3.4, 3.5: +* Python 2.7, 3.5, 3.6, 3.7: Ryu supports multiple Python version. CI tests on Travis-CI is running on these versions. |