-
-
Notifications
You must be signed in to change notification settings - Fork 12.6k
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
azure-cli: switch to PyPI source #195315
azure-cli: switch to PyPI source #195315
Conversation
cc @bebound from the azure side |
Thank you. Here are some concerns about this new methods:
cc @jiasli |
We can add |
One issue with this method is that |
Although this will cause Some packages are OS-specific so may want to add those as extra resources, e.g. |
I had a complete formula rewrite done locally with those changes, but the test kept failing with missing modules so I abandoned it. |
This pull request has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. |
HOMEBREW_NO_INSTALL_FROM_API=1 brew install --build-from-source <formula>
, where<formula>
is the name of the formula you're submitting?brew test <formula>
, where<formula>
is the name of the formula you're submitting?brew audit --strict <formula>
(after doingHOMEBREW_NO_INSTALL_FROM_API=1 brew install --build-from-source <formula>
)? If this is a new formula, does it passbrew audit --new <formula>
?The current GitHub tarball doesn't have a
pyproject.toml
orsetup.py
at its root, which means it doesn't work with ourbrew update-python-resources
and upstream has to rely on generating accurate resource blocks themselves.Instead, this switches to the published sdist on PyPI, which we generally prefer anyway.