-
Notifications
You must be signed in to change notification settings - Fork 75
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
charm_builder: install binary python packages (CRAFT-601) #588
Changes from 4 commits
42997ef
2044edc
f263485
9010f4b
ea4e28b
0dc6aec
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -72,6 +72,7 @@ parts: | |
plugin: nil | ||
build-packages: | ||
- python3-dev | ||
- git | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. What this is needed for? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This was needed to be able to install packages using git+https and can be removed when those lines are removed. I will revert these changes since this brownout period ended (if we leave this to be changed later we'll forget to remove the git entry from snapcraft.yaml). |
||
stage-packages: | ||
- libpython3-stdlib | ||
- libpython3.8-minimal | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why this change?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Github is deprecating access using the unencrypted git protocol (see https://github.blog/2021-09-01-improving-git-protocol-security-github/). This is not effective yet but there was a brownout on Nov 02 when this PR was submitted. Also note that all entries using non-published packages will be removed before the next release.