You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Merge pull request #2891 from misl6/release-2023.09.16
* Update `cffi` recipe for Python 3.10 (#2800)
* Update __init__.py
version bump to 1.15.1
* Update disable-pkg-config.patch
adjust patch for 1.15.1
* Use build rather than pep517 for building (#2784)
pep517 has been renamed to pyproject-hooks, and as a consequence all of
the deprecated functionality has been removed. build now provides the
functionality required, and since we are only interested in the
metadata, we can leverage a helper function for that. I've also removed
all of the subprocess machinery for calling the wrapping function, since
it appears to not be as noisy as pep517.
* Bump actions/setup-python and actions/checkout versions, as old ones are deprecated (#2827)
* Removes `mysqldb` recipe as does not support Python 3 (#2828)
* Removes `Babel` recipe as it's not needed anymore. (#2826)
* Remove dateutil recipe, as it's not needed anymore (#2829)
* Optimize CI runs, by avoiding unnecessary rebuilds (#2833)
* Remove `pytz` recipe, as it's not needed anymore (#2830)
* `freetype` recipe: Changed the url to use https as http doesn't work (#2846)
* Fix `vlc` recipe build (#2841)
* Correct sys_platform (#2852)
On Window, sys.platform = "win32".
I think "nt" is a reference to os.name.
* Fix code string - quickstart.rst
* Bump `kivy` version to `2.2.1` (#2855)
* Use a pinned version of `Cython` for now, as most of the recipes are incompatible with `Cython==3.x.x` (#2862)
* Automatically generate required pre-requisites (#2858)
`get_required_prerequisites()` maintains a list of Prerequisites required by each platform.
But that same information is already stored in each Prerequisite class.
Rather than rather than maintaining two lists which might become inconsistent, auto-generate one.
* Use `platform.uname` instead of `os.uname` (#2857)
Advantages:
- Works cross platform, not just Unix.
- Is a namedtuple, so can use meaningful fieldnames.
Also snuck in correction to typo in Readme which doesn't warrant its own review.
* Fix simple typos in comments (#2863)
One typo I introduced while trying to fix the other.
* `build_platform` should be all-lowercase (#2864)
* Docs: Fix typos and improved README quickstart (#2860)
* Made p4a apk build command more general - readme
* Fix twice spelled - readme
* updated p4a build command
* Cleanup `patching.py` (#2868)
Major changes to comments, param names, function ordering.
Removed deprecated LooseVersion
Move os.uname to platform.uname
Added win32 check
Windows fix
* Update Python versions in CI tests
Python 3.11 was released October 2022.
Python 3.7 went end-of-life June 2023
* Update documentation to reflect Python 3.7 being end-of-life.
* Correct check for `--sdk` option (#2870)
* Factor out dependency checking. Use modern version handling (#2866)
LooseVersion used again
Handle bad SDK versions
* Linter fixes (#2874)
The errors were:
```
pythonforandroid/bootstrap.py:136:5: F811 redefinition of unused 'name' from line 73
pythonforandroid/build.py:111:5: F811 redefinition of unused 'libs_dir' from line 82
pythonforandroid/build.py:127:5: F811 redefinition of unused 'aars_dir' from line 83
pythonforandroid/graph.py:48:12: E721 do not compare types, for exact checks use `is`
pythonforandroid/graph.py:163:20: E721 do not compare types, for exact checks use `is`
tests/test_build.py:39:41: E231 missing whitespace after ','
tests/test_build.py:40:58: E231 missing whitespace after ','
tests/test_build.py:41:61: E231 missing whitespace after ','
tests/test_build.py:42:71: E231 missing whitespace after ','
```
* Remove deprecated FlatDir in Gradle template (#2876)
Based on lessons from https://stackoverflow.com/questions/68215302/using-flatdirs-should-be-avoided-because-it-doesnt-support-any-meta-data-format
* Standardise `ensure_dir` and `rmdir` (#2871)
* Standardise ensure_dir and rmdir
* Standardise ensure_dir and rmdir
* Add libmysqlclient to broken list
* Libtorrent failing to be rebuilt
* Add boost to broken recipes list
* Standardise on move (files, directories) (#2884)
* Add new util function (and tests) called `move`.
* Change references to sh.mv to use move (as it is faster and cross-platform).
* Change conditional "mv -t" to a for loop.
* Standardise on touch files (#2886)
Existing code shells out to run the `touch` Unix command.
This can be done faster (and cross-platform) with `pathlib`'s touch method.
* Created a utility to accept string paths or pathlib paths and applies touch.
* Created test for it.
* Update all instances to use it, and updated their tests.
* Update CHANGELOG.md and bump version to 2023.09.16
---------
Co-authored-by: HyTurtle <[email protected]>
Co-authored-by: Steve Kowalik <[email protected]>
Co-authored-by: Mathias Lindström <[email protected]>
Co-authored-by: Ansh Dadwal <[email protected]>
Co-authored-by: Julian <[email protected]>
Co-authored-by: Kulothungan U.G <[email protected]>
Co-authored-by: Andre Miras <[email protected]>
- Microphone And Audio permissions doesn't work [\#2889](https://github.com/kivy/python-for-android/issues/2889)
10
+
- Error with Scipy [\#2883](https://github.com/kivy/python-for-android/issues/2883)
11
+
- Download failed \( Downloading sqlite3 from https://www.sqlite.org/2021/sqlite-amalgamation-3350500.zip\) during buildozer -v andriod debug [\#2881](https://github.com/kivy/python-for-android/issues/2881)
12
+
- ONNXruntime lib open failed due to 64-bit [\#2880](https://github.com/kivy/python-for-android/issues/2880)
13
+
- Question: how to write a recipe to download and install\(coz build fail\) a wheel package directly? [\#2878](https://github.com/kivy/python-for-android/issues/2878)
14
+
- Impossible to install python for android [\#2867](https://github.com/kivy/python-for-android/issues/2867)
15
+
- scipy with kivy [\#2861](https://github.com/kivy/python-for-android/issues/2861)
- Longer app load time, bigger apk size and unnecessary logs [\#2704](https://github.com/kivy/python-for-android/issues/2704)
27
+
- -fp-model argument not found, directory strict not found [\#2329](https://github.com/kivy/python-for-android/issues/2329)
28
+
- Kivy crashes on Android: ImportError: dlopen failed: library "libpython3.7m.so" not found [\#2237](https://github.com/kivy/python-for-android/issues/2237)
- Use Python's touch\(\) rather than shelling out. [\#2886](https://github.com/kivy/python-for-android/pull/2886) ([Julian-O](https://github.com/Julian-O))
34
+
- Standardise on move [\#2884](https://github.com/kivy/python-for-android/pull/2884) ([Julian-O](https://github.com/Julian-O))
35
+
- Remove deprecated FlatDir in Gradle template [\#2876](https://github.com/kivy/python-for-android/pull/2876) ([Julian-O](https://github.com/Julian-O))
- Factor out dependency checking. Use modern version handling [\#2866](https://github.com/kivy/python-for-android/pull/2866) ([Julian-O](https://github.com/Julian-O))
42
+
-`build_platform` should be all-lowercase [\#2864](https://github.com/kivy/python-for-android/pull/2864) ([misl6](https://github.com/misl6))
43
+
- Fix simple typos in comments [\#2863](https://github.com/kivy/python-for-android/pull/2863) ([Julian-O](https://github.com/Julian-O))
44
+
- Use a pinned version of `Cython` for now, as most of the recipes are incompatible with `Cython==3.x.x`[\#2862](https://github.com/kivy/python-for-android/pull/2862) ([misl6](https://github.com/misl6))
45
+
- Docs: Fix typos and updated command to build apk - README [\#2860](https://github.com/kivy/python-for-android/pull/2860) ([kulothunganug](https://github.com/kulothunganug))
- Optimize CI runs, by avoiding unnecessary rebuilds [\#2833](https://github.com/kivy/python-for-android/pull/2833) ([misl6](https://github.com/misl6))
54
+
- Remove `pytz` recipe, as it's not needed anymore [\#2830](https://github.com/kivy/python-for-android/pull/2830) ([misl6](https://github.com/misl6))
55
+
- Remove `dateutil` recipe, as it's not needed anymore [\#2829](https://github.com/kivy/python-for-android/pull/2829) ([misl6](https://github.com/misl6))
56
+
- Removes `mysqldb` recipe as does not support Python 3 [\#2828](https://github.com/kivy/python-for-android/pull/2828) ([misl6](https://github.com/misl6))
57
+
- Bump `actions/setup-python` and `actions/checkout` versions, as old ones are deprecated [\#2827](https://github.com/kivy/python-for-android/pull/2827) ([misl6](https://github.com/misl6))
58
+
- Removes `Babel` recipe as it's not needed anymore. [\#2826](https://github.com/kivy/python-for-android/pull/2826) ([misl6](https://github.com/misl6))
- Merge master into develop [\#2797](https://github.com/kivy/python-for-android/pull/2797) ([misl6](https://github.com/misl6))
61
+
- Use build rather than pep517 for building [\#2784](https://github.com/kivy/python-for-android/pull/2784) ([s-t-e-v-e-n-k](https://github.com/s-t-e-v-e-n-k))
0 commit comments