Alberto Sottile

Results 9 issues of Alberto Sottile

Since py2app 0.26, apps that use PySide2 started to include all the Qt Frameworks and libraries **twice** in the app: under `Contents/Frameworks` and under `Contents/Resources/lib/python{x.y}/PySide2`. This has two effects: -...

Same issue of #271, but with PySide2. I am opening a new issue as I assume the original one was somehow fixed, probably on the PyQt side. **Symptoms**: app does...

From issue #109 and http://stackoverflow.com/questions/15639218/how-to-set-default-locale-for-app-bundles-in-osx-mountain-lion, I understand that `py2app` sets `LC_CTYPE = 'en_US.UTF-8'` when the app is booted. That's because that variable is not set by default on macOS. On...

**NOTE**: I am not 100% sure this is an issue with py2app. Please close it if you deem it is not. I experienced this with GitHub Actions `macos-10.15` image a...

When working with PySide and PySide2, the following code snippets work perfectly: ``` layout = QtWidgets.QVBoxLayout() layout.setAlignment(Qt.AlignTop & Qt.AlignLeft) ``` or ``` layout = QtWidgets.QVBoxLayout() layout.addWidget(widget, 1, 0). ``` When...

feature

TIL about this project and I wanted to use it, but I am missing the support for this option. Note: I could not add the test for `--rm` in all...

A `listener` method for macOS is currently missing. As stated in the README, calling this function on this platform raises `NotImplementedError`. Related: #14

enhancement
help wanted

Is there a way to fix a loop on a message that was not delivered because of any reason? The most common cause is that the mobile device was not...

question

The app bundling process (`python ... py2app`) crashes with the message `error: [Errno 17] File exists: [file path]` when `setuptools>=71.0.2` is installed. So far, I have seen the error occurring...