-
Notifications
You must be signed in to change notification settings - Fork 1.9k
✨ Compression libraries - episode III: add support for libbz2 & liblzma to python3 #2097
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
very nice thanks
.. note:: This recipe can be built only against API 21+. Also, in order to | ||
build certain python modules, we need to add some extra recipes to our | ||
build requirements: | ||
The python 3 recipe can be built with some extra python modules, but do so, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
but do so
-> to do so
build certain python modules, we need to add some extra recipes to our | ||
build requirements: | ||
The python 3 recipe can be built with some extra python modules, but do so, | ||
we need some libraries. Per default, we ship the python3 recipe with some |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Per default
-> By default
build requirements: | ||
The python 3 recipe can be built with some extra python modules, but do so, | ||
we need some libraries. Per default, we ship the python3 recipe with some | ||
common libraries, defined at ``depends``.We also support some optional |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I would say defined in
but I suck at grammar. Also missing a space between the dot and "We"
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm not sure about this but what I'm sure is that your English is a lot better than mine...so let's go for in
, thanks!!! 😄
The python 3 recipe can be built with some extra python modules, but do so, | ||
we need some libraries. Per default, we ship the python3 recipe with some | ||
common libraries, defined at ``depends``.We also support some optional | ||
libraries, which are less common that the ones defined at ``depends``, so |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
defined in
0bbb62b
to
1117908
Compare
…ma to python3 (kivy#2097) * ✨ Add `bz2` and `lzma` support to `Python3` * 📝 Update python3 recipe docstrings * 📝 Fix typos and grammar errors
This is the third part and last of a set of recipes that will add add support for libbz2 & liblzma to python3 recipe, allowing us to build some extra python modules:
_bz2.cpython-38.so
_lzma.cpython-38.so
Also I put up-to-date the python3 recipe documentation 📝
These libraries are required by some python packages, like
pandas
, which I plan to create a PR later 😉Notes:
on_device_unit_test_app
#2046 - Episode II #2088Compression libraries...
: ✨ Compression libraries - episode I: libbz2 #2095 and ✨ Compression libraries - episode II: liblzma #2096