|
1 |
| ---- |
| 1 | +]--- |
2 | 2 | description: How to Contribute Back to the Avalanche Community
|
3 | 3 | ---
|
4 | 4 |
|
@@ -32,16 +32,19 @@ First of all, [install _Avalanche_ in "_Developer Mode"_](https://avalanche.cont
|
32 | 32 |
|
33 | 33 | **The following rules should be respected:**
|
34 | 34 |
|
35 |
| -* Use PEP8 coding style and work within the 80 columns limit. |
| 35 | +* Use [*Black*](https://github.com/psf/black) code formatting for a consistent coding style, which also handles line lengths (the 88 columns limit) automatically. |
36 | 36 | * Always pull before pushing a commit.
|
37 | 37 | * Try to assign to yourself one issue at a time.
|
38 | 38 | * Try closing an issue **within roughly 7 days**. If you are not able to do that, please break it down into multiple ones you can tackle more easily, or you can always remove your assignment to the issue!
|
39 | 39 | * If you add a new feature, please include also a _test_ and a usage example in your PR.
|
40 | 40 |
|
41 |
| -Also, before making your PR **make sure** that the following commands return without any errors: |
| 41 | +Also, before making your PR, first run the following command for code formatting with *Black*: |
| 42 | +``` bash |
| 43 | +black . |
| 44 | +``` |
42 | 45 |
|
| 46 | +then, **make sure** that the following command returns no test errors: |
43 | 47 | ```bash
|
44 |
| -pycodestyle avalanche tests examples |
45 | 48 | python -m unittest discover tests -v
|
46 | 49 | ```
|
47 | 50 |
|
@@ -74,3 +77,5 @@ To contribute to the documentation you need to follow the steps below:
|
74 | 77 |
|
75 | 78 | You can run _this chapter_ and play with it on Google Colaboratory:
|
76 | 79 | [](https://colab.research.google.com/github/ContinualAI/avalanche/blob/master/notebooks/from-zero-to-hero-tutorial/09_contribute-to-avalanche.ipynb)
|
| 80 | + |
| 81 | + |
0 commit comments