File tree Expand file tree Collapse file tree 3 files changed +20
-13
lines changed Expand file tree Collapse file tree 3 files changed +20
-13
lines changed Original file line number Diff line number Diff line change @@ -173,8 +173,10 @@ For example, you have a **Raspberry Pi B+** and a **PC**.
173
173
Creating a component
174
174
--------------------
175
175
176
- Subsequently you will be added in the documentation details on how to create a component for the Pedal Pi.
177
- It is currently recommended to view the API documentation.
176
+ Subsequently will be added details in the documentation on how to create a component for the Pedal Pi.
177
+ For now, you can check the blog post `Building a Pedal Pi Component - Pedalboard selector `_
178
+
179
+ .. _Building a Pedal Pi Component - Pedalboard selector : https://pedalpi.github.io/blog/building-a-pedal-pi-component-pedalboard-selector.html
178
180
179
181
Maintenance
180
182
-----------
@@ -189,10 +191,8 @@ The purpose of the tests is:
189
191
190
192
.. code-block :: bash
191
193
192
- coverage3 run --source=application setup.py test
193
- coverage3 report
194
- coverage3 html
195
- firefox htmlcov/index.html
194
+ make test
195
+ make test-details
196
196
197
197
Generate documentation
198
198
**********************
@@ -203,12 +203,10 @@ You can generate the documentation in your local machine:
203
203
204
204
.. code-block :: bash
205
205
206
- pip3 install sphinx
207
-
208
- cd docs
209
- make html
206
+ make install-docs-requirements
207
+ make docs
210
208
211
- firefox build/html/index.html
209
+ make docs-see
212
210
213
211
.. _Sphinx : http://www.sphinx-doc.org/
214
212
.. _Read the Docs : http://readthedocs.org
Original file line number Diff line number Diff line change 1
1
PedalPi - Application - Component
2
2
=================================
3
3
4
+ Creating a component
5
+ --------------------
6
+
7
+ Subsequently will be added details on how to create a component for the Pedal Pi.
8
+ For now, you can check the blog post `Building a Pedal Pi Component - Pedalboard selector `_
9
+
10
+ .. _Building a Pedal Pi Component - Pedalboard selector : https://pedalpi.github.io/blog/building-a-pedal-pi-component-pedalboard-selector.html
11
+
4
12
5
13
Component
6
14
---------
@@ -25,3 +33,4 @@ CurrentPedalboardObserver
25
33
:members:
26
34
:special-members:
27
35
:exclude-members: __weakref__
36
+
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ def readme():
24
24
25
25
setup (
26
26
name = 'PedalPi-Application' ,
27
- version = '0.3 .0' ,
27
+ version = '0.4 .0' ,
28
28
29
29
description = 'Framework for manager the Pedal Pi' ,
30
30
long_description = readme (),
@@ -52,7 +52,7 @@ def readme():
52
52
package_data = {
53
53
'application/data' : ['*.json' , '*/*.json' ],
54
54
},
55
- install_requires = ['PedalPi-PluginsManager>=0.5 .0' ],
55
+ install_requires = ['PedalPi-PluginsManager==0.7 .0' ],
56
56
57
57
test_suite = 'test' ,
58
58
tests_requires = ['PedalPi-PluginsManager' ],
You can’t perform that action at this time.
0 commit comments