Chaquopy version 15.0.1

Posted on

Features

  • Kotlin build.gradle.kts files are now supported. (#231)
  • A new Gradle DSL has been added, with a top-level chaquopy block. Kotlin build.gradle.kts files must use the new DSL; Groovy build.gradle files may use either the new or the old one. (#231)
  • All Android wheels are now downloaded from https://chaquo.com/pypi-13.1/ – the old pypi-7.0 URL is no longer used. (#808)
  • os.get_terminal_size now returns ENOTTY rather than EPERM, which was causing avc log spam when stdio is redirected. (#886)
  • Update CA bundle to certifi 2023.11.17. (#893)
  • Android Gradle plugin versions 8.1 and 8.2 are now supported. (#908#1003)
  • Python version 3.12 is now supported. (#931#967)
  • Update runtime Python versions to 3.8.18, 3.9.18, 3.10.13, 3.11.6, and 3.12.1. (#932)
  • The importlib.resources.files API is now supported in Python 3.9 and later. (#977)
  • Update pkg_resources from setuptools version 68.2.2.

Deprecations and Removals

  • The 32-bit ABIs armeabi-v7a and x86 will no longer be supported on Python 3.12 and later. (#709)
  • Android Gradle plugin versions 4.1 and 4.2 are no longer supported. (#787#840)

Bugfixes

  • Fix “AttributeError: “‘AssetFinder’ object has no attribute ‘extract_packages’” when AssetFinder subdirectories are on sys.path. (#820)
  • Unsupported socket functions such as if_nametoindex now throw OSError as documented, rather than AttributeError. (#870)
  • Fix FileNotFoundError when pkgutil.iter_modules is called with a nonexistent path. (#917)
  • ZIP files using BZ2 or LZMA compression are now supported. (#953)

Chaquopy version 14.0.2

Posted on

Features

  • sys.stdout and sys.stderr are now line-buffered by default. (#654#746#757)
  • Add option to redirect native stdout and stderr to Logcat. (#725)
  • Update to Python version 3.8.16 and OpenSSL version 1.1.1s. This fixes the Google Play warning “Your app uses a defective version of the OpenSSL library”. (#727)
  • Update CA bundle to certifi 2022.12.7. (#747)
  • Add python executable as a final fallback when searching for buildPython. (#752)
  • Restore the extractPackages setting, for code that requires its modules to exist as separate .py files. (#754)
  • Android Gradle plugin version 7.4 is now supported. (#756)
  • Update to pip version 20.1.

Deprecations and Removals

Bugfixes

  • Enable PEP 517 builds in pip. (#715)
  • Show correct error message when buildPython autodetection fails. (#733)
  • Fix error when calling entry_points with an unreadable directory on sys.path. (#755)
  • Fix “Could not find an activated virtualenv” error when PIP_REQUIRE_VIRTUALENV environment variable is set. (#777)

Chaquopy version 13.0.0

Posted on

Changes:

  • Android Gradle plugin version 7.3 is now supported (#663).
  • [BACKWARD INCOMPATIBLEminSdkVersion must now be at least API level 21. This still covers 98% of active devices.
  • Python versions 3.9, 3.10 and 3.11 are now supported (#661).
  • Detect changes to files or directories listed in requirements files (#660).
  • Projects are no longer required to have a local.properties file, as long as the ANDROID_HOME or ANDROID_SDK_ROOT environment variable is set (#672).
  • Enable all warnings, including DeprecationWarningPendingDeprecationWarningImportWarning and ResourceWarning.
  • Update to pkg_resources version 56.2.0.
  • Update to SQLite version 3.39.2.
  • Update Python 3.9 and later to OpenSSL version 3.0.5.

The following packages have been updated since the previous version:

  • scikit-image

Chaquopy is now open-source

Posted on

I’m delighted to announce that, thanks to support from Anaconda, Chaquopy is now free and open-source. The SDK’s full source code is available on GitHub under the MIT license.

The first open-source version is 12.0.1, which was released today. Apart from removing the license restrictions, it’s identical to version 12.0.0.

If you’re using an older version of Chaquopy, see here for advice.

Chaquopy version 12.0.0

Posted on

Changes:

  • Android Gradle plugin version 7.2 is now supported (#613), and version 4.0 is no longer supported.
  • Update to Python version 3.8.13 (see its changelog for details).
  • Update CA bundle to certifi 2021.10.8.
  • Fix signal.valid_signals on 32-bit ABIs (#600).
  • Allow buildscript configuration to be in a subproject (#615).

The following packages have been added to the repository since the previous version:

  • zstandard

And the following packages have been updated:

  • cryptography

Chaquopy version 11.0.0

Posted on

Changes:

  • Android Gradle plugin version 7.1 is now supported, and version 3.6 is no longer supported.
  • Remove warning about untested Android Gradle plugin versions, as they are usually backward compatible.
  • Gradle pluginManagement and plugins syntax is now supported.
  • Java arrays now support the copy.copy function in Python.
  • Passing an unsupported Java object to copy.copycopy.deepcopy or pickle now fails with a clearer error message.

The following packages have been added to the repository since the previous version:

  • aiohttp
  • frozenlist
  • pyzbar
  • rawpy
  • spectrum

And the following packages have been updated:

  • numpy
  • pillow
  • pynacl
  • regex
  • tokenizers

Chaquopy version 10.0.1

Posted on

Changes:

  • Android Gradle plugin versions 4.2 and 7.0 are now supported, and versions 3.4 and 3.5 are no longer supported.
  • The version setting is no longer supported. Simply remove it to use the current version of Python.
  • Update to Python version 3.8.11 (see its changelog for details).
  • Update to pip version 19.2.3 (see its changelog for details).
  • Update CA bundle to certifi 2021.5.30.
  • Add a buffer attribute to stdout and stderr for bytes output (#464#516).
  • Java arrays now support the index and count methods in Python. In order to support code with hasattr checks, they also now implement the methods __contains____iter__ and __reversed__, rather than relying on the fallback to __getitem__ (#306).
  • Fix “truth value of an array with more than one element is ambiguous” error when passing a NumPy array to a method which takes a Java array (#526).
  • NumPy integer scalars, and anything else which implements the __index__ method, can now be used as a Java array index (#495).
  • Add workaround to help conda Python on Windows find its SSL libraries (#450).
  • Fix “invalid literal for int” error in pip_install when project path includes a symlink (#468).
  • Fix crash caused by empty files in the APK on Android 7 (Electron Cash #2136).
  • importlib.util.spec_from_file_location now works for paths loaded from the APK.

The following packages have been added to the repository since the previous version:

  • argon2-cffi
  • backports.zoneinfo
  • bitarray
  • google-crc32c
  • pycurl
  • ruamel.yaml.clib
  • sentencepiece
  • tflite-runtime
  • tokenizers
  • wordcloud

And the following packages have been updated:

  • cryptography
  • grpcio
  • lxml
  • multidict
  • opencv-python
  • pandas
  • scikit-learn
  • torch
  • torchvision

Chaquopy version 9.1.0

Posted on

Changes:

  • Fix error “‘HTMLParser’ object has no attribute ‘unescape’” on Python 3.9 (#416).
  • Fix error “must supply either home or prefix/exec-prefix – not both” on Homebrew for Mac (#405).
  • buildPython path can now contain spaces.
  • Java API is now annotated with @NotNull where appropriate.
  • Java arrays now support the copy method in Python.
  • Fix bug when using cast to call a functional interface which extends another functional interface.
  • Update CA bundle to certifi 2020.12.5.
  • json module performance improvements.
  • Java API performance improvements.

The following packages have been added to the repository since the previous version:

  • gensim

And the following packages have been updated:

  • scikit-learn (0.23.2)

Chaquopy version 9.0.0

Posted on

Changes:

  • Android Gradle plugin version 4.1 is now supported, and version 3.3 is no longer supported.
  • Runtime Python version is now 3.8.6.
  • Java objects implementing functional interfaces can now be called using () syntax.
  • Java arrays can now be accessed from Python using negative indices and slice syntax.
  • Fix conversion of non-contiguous NumPy arrays to Java arrays.
  • Remove inaccessible directories from os.get_exec_path (#346).
  • Make zipimport implement the new loader API. This affected the package dateparser.
  • If bdist_wheel fails for an unknown reason, fall back on setup.py install. This affected the packages acoustics and kiteconnect (#338).
  • Fix ClassNotFoundException when minifyEnabled is in use (#261).

The following packages have been added to the repository since the previous version:

  • shapely
  • tensorflow-gpu

Chaquopy version 8.0.1

Posted on

Changes:

  • Make missing multiprocessing primitives throw an exception on use rather than on import. This affected the packages joblib and librosa (#21).
  • Make ctypes.util.find_library search libraries installed with pip. This affected the package soundfile (#201).
  • Fix “invalid constraint” error affecting the packages openpyxl and webcolors.

The following packages have been added to the repository since the previous version:

  • xgboost

And the following packages have been updated:

  • grpcio (1.30.0)