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
You can find any required library for this project in the *requirements.txt*:
13
+
You can find any required library for this project listed in the *setup.cfg*:
14
14
15
-
.. literalinclude:: ../requirements.txt
15
+
.. literalinclude:: ../setup.cfg
16
16
17
-
You can install them by
17
+
You can install all you need by
18
18
19
19
.. code-block:: bash
20
20
21
-
pip install -r requirements.txt --user
22
-
pip install . --user
21
+
pip install --user --upgrade -e .
23
22
24
23
NOTE: Make sure to have also all the extensions listed in the `docs/conf.py`
25
24
that are required for the SDK Documentation.
@@ -39,7 +38,7 @@ Run Tests and Code Validation
39
38
-----------------------------
40
39
41
40
If you open a Pull Request (PR), we will trigger automated tests and pep8 style
42
-
check in Travis CI. So nothing you have to worry about in your development.
41
+
check in CI process. So nothing you have to worry about in your development.
43
42
You can open your PR and prefix its title with WIP "Work In Progress" to access
44
43
these checks in advance.
45
44
@@ -66,7 +65,7 @@ Pull Request (PR) Procedure
66
65
* apply your desired changes / extensions
67
66
* commit and push it to remote. Please follow these [commit guidelines](https://github.com/angular/angular.js/blob/master/DEVELOPERS.md#-git-commit-guidelines). We suggest to use [commitizen](https://github.com/commitizen/cz-cli/blob/master/README.md).
68
67
* open a pull request (PR).
69
-
* check if the Travis CI build check fails. If so, review your code (feel free to ask for help).
68
+
* check if the CI process fails. If so, review your code (feel free to ask for help).
0 commit comments