Andrew Coffey
Andrew Coffey
I think I broke gradle lol. I tried this as the "generated" requirements.txt ``` # Generated 2024-07-07 21:21:47.838778 pygame-ce --install-option="-Cbuild-dir=\"C:\Users\andre\.meson\"" ``` Now, it seems to get stuck in some kind...
Lemme try something, instead of no slashes let me just use `.meson` as the build dir. I have no idea where it's going to try to put it though
pyproject.toml ``` requires = [ "-Cbuild-dir=\".meson\"", "pygame-ce", ] ``` hopefully the heart of the error message ``` 2024-07-07T21:34:41.682-0500 [ERROR] [system.err] Usage: __main__.py [options] 2024-07-07T21:34:41.682-0500 [ERROR] [system.err] 2024-07-07T21:34:41.682-0500 [ERROR] [system.err] ERROR:...
Adding what lines are emitting error messages would be useful...
I'm not sure if I'm doing it right, but in the provided `build.gradle` at `build/helloworld/android/gradle/app/build.gradle`, I tried two different things under the user provided content section: ``` chaquopy { defaultConfig...
We build wheels for all sorts of systems, so maybe that would be fine. However, we build all of our wheels using CI and I don't think github CI supports...
> Chaquopy is using a vendored version of `pip`; it's version 20.1. Back then, looks like `pip` was still using `--install-option`. Using this ``` chaquopy { defaultConfig { pip {...
> If we figure out the process, setting up CI to repeat the process shouldn't be hard. As for passing arguments to meson, you can always edit `pyproject.toml`s `[tool.meson-python.args]` section...
``` 2024-07-08T22:09:58.293-0500 [QUIET] [system.out] Building wheel for pygame-ce (setup.py): finished with status 'error' 2024-07-08T22:09:58.293-0500 [ERROR] [system.err] ERROR: Command errored out with exit status 1: 2024-07-08T22:09:58.294-0500 [ERROR] [system.err] command: 'C:\Users\andre\Projects\briefcase-android-test\helloworld\build\helloworld\android\gradle\app\build\python\env\debug\Scripts\python.exe' -u...
I guess we are just going to have to build our own wheels I'll try to look into that over the next few days