Skip to content

Commit c415d11

Browse files
committed
Feedback from Dan and hopefully fix build.
1 parent 8b60b20 commit c415d11

File tree

2 files changed

+7
-6
lines changed

2 files changed

+7
-6
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ before_script:
7272
- sudo apt-get install -y python3-pip
7373
- pip3 install --user sh click
7474
- ([[ -z "$TRAVIS_TESTS" ]] || sudo pip install --upgrade cpp-coveralls)
75-
- (! var_search "${TRAVIS_TESTS-}" docs || pip install --user Sphinx sphinx-rtd-theme recommonmark)
75+
- (! var_search "${TRAVIS_TESTS-}" docs || pip install --user Sphinx sphinx-rtd-theme recommonmark sphinxcontrib-svg2pdfconverter)
7676
- (! var_search "${TRAVIS_TESTS-}" translations || pip3 install --user polib)
7777

7878
# report some good version numbers to the build

README.rst

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ CircuitPython
1010
`Branding <#branding>`__ \| `Differences from Micropython <#differences-from-micropython>`__ \|
1111
`Project Structure <#project-structure>`__
1212

13-
**CircuitPython** is an *beginner friendly*, open source version of Python for tiny, inexpensive
13+
**CircuitPython** is a *beginner friendly*, open source version of Python for tiny, inexpensive
1414
computers called microcontrollers. Microcontrollers are the brains of many electronics including a
1515
wide variety of development boards used to build hobby projects and prototypes. CircuitPython in
1616
electronics is one of the best ways to learn to code because it connects code to reality. Simply
@@ -22,9 +22,10 @@ CircuitPython features unified Python core APIs and a growing list of 150+ devic
2222
drivers that work with it. These libraries also work on single board computers with regular
2323
Python via the `Adafruit Blinka Library <https://github.com/adafruit/Adafruit_Blinka>`_.
2424

25-
CircuitPython is a beginner focused derivative of `MicroPython <https://micropython.org>`_.
26-
CircuitPython development is sponsored by `Adafruit <https://adafruit.com>`_ and is available on
27-
their educational development boards. Please support both MicroPython and Adafruit.
25+
CircuitPython is based on `MicroPython <https://micropython.org>`_. See
26+
`below <#differences-from-micropython>`_ for differences. CircuitPython development is sponsored by
27+
`Adafruit <https://adafruit.com>`_ and is available on their educational development boards. Please
28+
support both MicroPython and Adafruit.
2829

2930
Get CircuitPython
3031
------------------
@@ -126,7 +127,7 @@ Behavior
126127
after the crash. A reset (the button) is needed after its fixed to
127128
get back into normal mode.
128129
- RGB status LED indicating CircuitPython state, and errors through a sequence of colored flashes.
129-
- Re-runs ``code.y`` or other main file after file system writes over USB mass storage. (Disable with
130+
- Re-runs ``code.py`` or other main file after file system writes over USB mass storage. (Disable with
130131
``samd.disable_autoreload()``)
131132
- Entering the REPL after the main code is finished requires a key press which enters the REPL and
132133
disables autoreload.

0 commit comments

Comments
 (0)