Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | README: Improve description of precompiled bytecode; mention mpy-cross. | Damien George | 2017-06-26 |
| | |||
* | README: Mention support for bytecode and frozen bytecode. | Paul Sokolovsky | 2017-06-24 |
| | |||
* | README: Change Travis & Coveralls badges to not use link references. | Damien George | 2017-03-26 |
| | | | | Link references don't seem to work anymore. | ||
* | README: Describe extmod/ dir. | Paul Sokolovsky | 2017-03-25 |
| | |||
* | README: Add link to docs.micropython.org. | Paul Sokolovsky | 2017-03-25 |
| | |||
* | README: Explicitly mention "await" support, and formatting for keywords. | Paul Sokolovsky | 2017-03-08 |
| | |||
* | README: "MicroPython board" is much more commonly known as PyBoard. | Paul Sokolovsky | 2016-10-21 |
| | |||
* | README: Mention _thread module availability in select ports. | Paul Sokolovsky | 2016-10-12 |
| | |||
* | README: Remove issue-stats badges, the service is no longer available. | Damien George | 2016-09-22 |
| | | | | | | | The issue-stats service is not well maintained and likely the situation won't improve in the future. See: https://github.com/hstove/issue_stats/issues/41 https://github.com/hstove/issue_stats/issues/46 | ||
* | README: "quick build": Use "make axtls" after all. | Paul Sokolovsky | 2016-05-28 |
| | | | | | "make deplibs" also builds libffi, and that requires GNU autotools. As we use host libffi by default, skip requiring users to build it for now. | ||
* | README: Add "make deplibs" to quick build section. | Paul Sokolovsky | 2016-05-28 |
| | |||
* | README: Add explicit note that subdirs contain more READMEs. | Paul Sokolovsky | 2016-05-14 |
| | |||
* | README: Mention support "async" keyword from Python 3.5. | Paul Sokolovsky | 2016-04-29 |
| | |||
* | README: Promote "docs" and "tests" to "major components". | Paul Sokolovsky | 2016-04-29 |
| | |||
* | README: Explicitly point to required dependencies section. | Paul Sokolovsky | 2016-04-18 |
| | |||
* | stmhal: Add stmhal-specific README.md with extra details for this port. | Damien George | 2016-03-08 |
| | |||
* | stmhal: Switch from dfu-util to tools/pydfu.py for deflt deploy method. | Damien George | 2016-03-08 |
| | | | | | | | | tools/pydfu.py is now the recommended way of deploying a DFU file. Old behaviour of dfu-util can be obtained by passing USE_PYDFU=0 when invoking make. The main README.md file has been updated to reflect this change. | ||
* | README.md: Add link to micropython.org. | Damien George | 2016-02-17 |
| | |||
* | docs: Add docs about REPL paste-mode and Control-C | Dave Hylands | 2015-11-03 |
| | |||
* | docs: Move instructions on generating the documentation to docs/README.md | Dave Hylands | 2015-11-03 |
| | |||
* | README: Fix typo in package name. | Mike Bryant | 2015-11-04 |
| | |||
* | README: Adjust suggested path for generated docs. | Paul Sokolovsky | 2015-10-31 |
| | |||
* | README: Document how to enable/build external dependencies. | Paul Sokolovsky | 2015-10-21 |
| | |||
* | README.md: Document "Ctrl+D" shell exit. | nyov | 2015-10-12 |
| | |||
* | Rename "Micro Python" to "MicroPython" in REPL, help, readme's and misc. | Damien George | 2015-10-12 |
| | |||
* | README: Add hint about "micropython --help". | Paul Sokolovsky | 2015-08-22 |
| | | | | Also, hint about possibility to adjust heap size. | ||
* | unix-cpy: Remove unix-cpy. It's no longer needed. | Damien George | 2015-08-17 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | unix-cpy was originally written to get semantic equivalent with CPython without writing functional tests. When writing the initial implementation of uPy it was a long way between lexer and functional tests, so the half-way test was to make sure that the bytecode was correct. The idea was that if the uPy bytecode matched CPython 1-1 then uPy would be proper Python if the bytecodes acted correctly. And having matching bytecode meant that it was less likely to miss some deep subtlety in the Python semantics that would require an architectural change later on. But that is all history and it no longer makes sense to retain the ability to output CPython bytecode, because: 1. It outputs CPython 3.3 compatible bytecode. CPython's bytecode changes from version to version, and seems to have changed quite a bit in 3.5. There's no point in changing the bytecode output to match CPython anymore. 2. uPy and CPy do different optimisations to the bytecode which makes it harder to match. 3. The bytecode tests are not run. They were never part of Travis and are not run locally anymore. 4. The EMIT_CPYTHON option needs a lot of extra source code which adds heaps of noise, especially in compile.c. 5. Now that there is an extensive test suite (which tests functionality) there is no need to match the bytecode. Some very subtle behaviour is tested with the test suite and passing these tests is a much better way to stay Python-language compliant, rather than trying to match CPy bytecode. | ||
* | README: Add quick information about builtin upip package manager. | Paul Sokolovsky | 2015-06-22 |
| | | | | | Also, simplify dependencies info now that we no longer require GNU readline. | ||
* | README: Mention esp8266 port. | Paul Sokolovsky | 2015-06-18 |
| | |||
* | README.md: Correct port names in the documentation build command. | Daniel Campora | 2015-06-11 |
| | |||
* | docs: Add initial draft documentation for the WiPy. | Daniel Campora | 2015-06-10 |
| | | | | This makes all common files "port-aware" using the .. only directive. | ||
* | README.md: Add the CC3200 port to the list of additional components. | Daniel Campora | 2015-04-18 |
| | |||
* | README: Add note about pic16bit port. | Damien George | 2015-04-03 |
| | |||
* | README.md: Add issuestats badges for PRs and issues. | Damien George | 2015-03-03 |
| | |||
* | README.md: Change coveralls badge from travis-testing to master branch. | Damien George | 2015-03-01 |
| | |||
* | travis: Add automated coverage testing using coveralls. | Damien George | 2015-03-01 |
| | |||
* | README.md: Update subdir descriptions. | Paul Sokolovsky | 2015-02-26 |
| | |||
* | README.md: Update list of supported Python types. | Paul Sokolovsky | 2015-02-24 |
| | |||
* | README.md: Promote project status from "early beta" to just "beta". | Paul Sokolovsky | 2015-02-24 |
| | | | | | Also, reword purpose to avoid impression that uPy supports just one microcontroller. | ||
* | README: Update link to logo. | Damien George | 2014-11-17 |
| | |||
* | docs: Add optional sphinx_rtd_theme; add docs build instructions. | evildmp | 2014-11-15 |
| | | | | | | | The sphinx_rtd_theme is used by ReadTheDocs to render a pretty looking documentation. If you have this theme installed locally then your locally-compiled docs will look exactly like the published documentation. Otherwise it falls back to the default theme. | ||
* | README: Update "unix" section with more info/details. | Paul Sokolovsky | 2014-10-11 |
| | |||
* | Updating README.md to include the fact that the Unix build requires ↵ | Tom von Clef | 2014-10-08 |
| | | | | pkg-config to build the FFI module. | ||
* | README: Add USB VID/PID to dfu-util command. | Damien George | 2014-07-31 |
| | | | | This reflects how it's done in stmhal/Makefile, via deploy. | ||
* | stm: Remove long-obsolete stm/ port. | Damien George | 2014-05-21 |
| | |||
* | README: Add articles, and update doc for deploying firmware. | Damien George | 2014-05-09 |
| | |||
* | README: Add short overview of Python features supported. | Paul Sokolovsky | 2014-05-09 |
| | | | | Also, "upgrade" project to "early beta", and elaborate pyboard description. | ||
* | Fixed Travis-CI Build Status Link in README.md | Jonathan Greig | 2014-04-14 |
| | |||
* | Fix README build status image. | Damien George | 2014-04-14 |
| | |||
* | Update README to include build status from Travis CI. | Damien George | 2014-04-14 |
| |