Replies: 1 comment 1 reply
-
|
I don't think this has anything to do with the Python version messages, which don't appear in the attached log anyway. The actual reason for the failure is that |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Describe the bug
I have a bit of an annoying issue with my app. When I run
briefcase dev -rall the requirements are properly updated, all the package versions are correct, and the app runs perfectly. As soon as I try to runbriefcase build -rI suddenly run into issues related to installing some packages that were installed fine withbriefcase dev -r:It is related to two packages (also mine) called TCutility and TCviewer for which I specify the required version to be 0.16.11 and 0.1.3 respectively. These versions both support
Python==3.10. It seems that for some reason pip tries to find aPython>=3.11version for some packages while I am using aPython==3.10environment. I don't understand why all the packages install correctly in dev-mode and fail when building the app.Steps to reproduce
python3 -m venv test-envsource test-env/bin/activatepython -m pip install briefcasebriefcase new"tcutility>=0.16.11"to the requirements in thepyproject.tomlunder[tool.briefcase.app.helloworld.macOS]cd helloworld; briefcase dev -rbriefcase build -rand get the following error:Expected behavior
I expect tcutility to be included in the App build.
Screenshots
No response
Environment
Logs
briefcase.2025_09_09-11_32_23.build.log
Additional context
No response
Beta Was this translation helpful? Give feedback.
All reactions