This website requires JavaScript.
Odkrywaj
Pomoc
Zarejestruj się
Zaloguj się
mirror
/
micropython-lib
kopia lustrzana
https://github.com/micropython/micropython-lib
Obserwuj
1
Polub
0
Forkuj
You've already forked micropython-lib
0
Kod
Zgłoszenia
Projekty
Wydania
Wiki
Aktywność
9d09cdd4af
micropython-lib
/
unix-ffi
/
_markupbase
/
manifest.py
6 wiersze
82 B
Python
Czysty
Zwykły widok
Historia
Unescape
Escape
all: Standardise x.y.z versioning for all packages. - For packages that were just x.y, update to x.y.0. - For that were x.y.z-n, update to x.y.(z+1) From now on we'll apply semver rules: - MAJOR version when you make incompatible API changes - MINOR version when you add functionality in a backward compatible manner - PATCH version when you make backward compatible bug fixes Signed-off-by: Jim Mussared <jim.mussared@gmail.com>
2023-07-21 11:43:21 +00:00
metadata
(
version
=
"
3.3.4
"
)
all: Replace metadata.txt with manifest.py. Uses the new require()/package()/module() functions from manifestfile.py. Add manifest.py for iperf3 and pyjwt. Signed-off-by: Jim Mussared <jim.mussared@gmail.com>
2022-07-13 04:44:28 +00:00
unix-ffi: Move more unix-only packages to unix-ffi. With the dependencies captured in manifest.py, several packages in python-stdlib were still unix-only due to direct or transitive dependencies on unix-only or ffi modules. Or they just make no sense to run on microcontroller targets. In a few cases (e.g. base64) where possible, the unix dependency could be removed. Updates manifest.py to use the `unix_ffi=True` arg to `require()` for these libraries. Rename re-pcre to re now that unix-ffi is effectively its own namespace. Update unix-ffi/README.md, and strengthen the wording that the unix libraries are unmaintained. Signed-off-by: Jim Mussared <jim.mussared@gmail.com>
2022-08-10 14:38:03 +00:00
require
(
"
re
"
,
unix_ffi
=
True
)
all: Replace metadata.txt with manifest.py. Uses the new require()/package()/module() functions from manifestfile.py. Add manifest.py for iperf3 and pyjwt. Signed-off-by: Jim Mussared <jim.mussared@gmail.com>
2022-07-13 04:44:28 +00:00
module
(
"
_markupbase.py
"
)