March has seen a big release for Toga, and a number of other notable improvements in the BeeWare ecosystem.
What we've done
- Toga 0.5.0 has been released! It's been over 5 months since our last feature release of Toga; this release includes a number of major improvements to Toga's style layer, and some significant improvements in iOS and macOS memory handling. This release includes a number of backwards incompatible changes; check the Toga 0.5.0 release notes for details.
- We added a new Toga-Positron bootstrap. This bootstrap is a Briefcase plugin that provides an easy way to start a new project that uses a web browser as the primary UI. This is effectively the equivalent of Electron-style apps - but the code is entirely written in Python, and works on iOS and Android. It also allows for hybrid apps: as the underlying app is a Toga app, you can mix Toga widgets into the layout that is being used. The bootstrap allows you to convert a Django website or static web server into a mobile app; it also provides a way to generate a "single site browser" - converting a single public URL into a standalone app on your desktop.
- We modified the way that style properties are applied to Toga widgets. Style updates are now applied in batch updates, dramatically reducing the amount of repeated work required when changing the appearance of a widget.
- We improved the UX of the Winforms Table widget, ensuring that the selected row is still visible when a table doesn't have focus.
- We improved Toga's handling of the asyncio event loop on Windows. This change ensures that Winforms apps always clean up the event loop on exit; previously, it was possible for warnings to be raised on application exit, caused by open sockets and unawaited co-routines.
- We modified the handling of alignment style properties to ensure that when text direction is changed, the layout of the app is re-evaluated.
- We added support for controlling inter-line spacing in multiline text on a canvas.
- We corrected some issues with background color handling on Android.
- We corrected some issues with supporting PyGObject on Linux distributions that are based on Debian 12 (including Ubuntu 22.04). This was necessary because of a backwards incompatible change introduced into the PyGObject 3.52.1 release; unfortunately, users of older Linux distributions may need to make some modifications to their projects.
- The pull request adding iOS support to cibuildwheel has been merged. With this change, a simple package can build binary wheels for iOS with a single command: CIBW_PLATFORM=ios cibuildwheel. This PR then required a follow-up investigation and fix to correct an intermittent issue that was seen when running the cibuildwheel tests in CI.
- We've started work on a follow-up PR to cibuildwheel, adding support for explicitly declaring safe cross-build tools. This is a use case that was identified during the development of PR for iOS support.
- We corrected a long standing issue with PTH file handling in Briefcase.
- We added the ability to invoke briefcase build and briefcase package on a single application in a Briefcase project.
- We began work on a patch to support generating iOS binary wheels for NumPy. This is a work in progress; we've got a set of patches that allows us to compile NumPy, but the test suite won't run yet.
- We created a process to make an official binary release of Python for Android, which should be available on python.org starting with Python 3.14. This will reduce duplicated effort across Python on Android tools, and ensure binary compatibility in the packaging ecosystem.
- We submitted pull requests adding Android support to packaging and pip.
What's next?
Binary packaging will continue to be an area of focus in April. In addition to finishing the work on the "safe cross-build tools" patch, we will continue to work on porting "real world" packages (like NumPy) to discover any gaps that exist in the mobile packaging story. During April, we also hope to submit a PR to support Android in cibuildwheel; and to start a discussion with the rest of the Python packaging community about the use of cross-platform build environments.
We'll also continue to work on Python Emscripten support. The Emscripten buildbot is almost ready to launch; we have one last technical issue to resolve, and then we'll be able to add Emscripten to the CPython buildbot fleet.
There's also good news for Toga's Web backend - a group of students from Curtin University will be working on Toga's web backend as part of their final year capstone project. This will include making modifications to Briefcase to support testing web-based apps. Some of the improvements to Toga and Briefcase that landed this month are the result of those students becoming familiar with BeeWare's contribution process. This project will run until the end of the year; we look forward to seeing the progress they're able to make.
Looking a little further ahead - in May, we'll be attending PyCon US! We're presenting a talk and a tutorial; and we'll be there for the first 3 days of the sprints. We'll have a presence at the Anaconda booth in the main hall; we'll be attending other events (such as the language summit) during the conference; and we're hoping to plan some open spaces. Ticket sales are open - we hope to see you there!
Want to get involved?
Want to get involved? We curate issues that should be approachable for first-time contributors to BeeWare. They're all relatively minor changes, but would provide a big improvement to the lives of BeeWare users:
- If you're interested in the tooling for deploying applications to various platforms, take a look at Briefcase
- Or, if you're interested in GUI widgets, take a look at Toga
These lists can also be filtered by platform - so you can find issues that are specific to your preferred operating system. Pick one of these tickets, drop a comment on the ticket to let others know you're looking at it, and try your hand at a PR! We have a guide on setting up a Briefcase development environment; but if you need any additional assistance or guidance, you can ask on the ticket, or join us on the BeeWare Discord server.
- Next entry
- 2025Q2 Roadmap
- Previous entry
- February 2025 Status Update