-
We currently don't cover the question of "all inclusive" applications at all, where the whole of the application is bundled up into a single file. While that's beyond the scope of PyPA's responsibilit…
-
This appears to be similar to #412 .
An affected build can be found here: https://github.com/glyph/Pomodouroboros/releases/tag/0.4.6
glyph updated
2 weeks ago
-
The `_inline_tab' is currently exported from a Python extension module, it might be possible to just use the dlopen API directly to load the library and extract the symbol from it.
A number of fram…
-
**[Original report](https://bitbucket.org/ronaldoussoren/py2app/issue/159) by pcreinhold@gmail.com (Bitbucket: [pcreinhold](https://bitbucket.org/pcreinhold), ).**
-----------------------------------…
-
How can I build this wallet instead of running the python command ?
Been trying with py2app but not sure about setup.py ...
-
Hi, I'm trying to set up a build on an app using wxPython. My Python installation is managed by Homebrew, and I'm using poetry to manage my development environment.
When I run `poetry run python3 s…
-
This happens on a M1 macOS 14.0.
# test.py
```python
import rumps
class BarApp(rumps.App):
@rumps.clicked("Test")
def test(self, _):
rumps.alert("Now click BarApp twice,…
-
I've tried to create simple gui apps with py2app. Generally everything works fine on my machine which is an Intel Mac. Using the standard libraries with tkinter, filedialoge and collections everythin…
-
Using python 3.9.7 installed from python.org on macOS 11.6, the trivial PyQt5 GUI app
```
from PyQt5.QtWidgets import QApplication, QWidget
app = QApplication([])
window = QWidget()
window.s…
-
See https://setuptools.pypa.io/en/latest/userguide/extension.html#customizing-commands
This should allow the tool to still invoke `py2app` internally or let the caller invoke them separately at `py…