-
-
Notifications
You must be signed in to change notification settings - Fork 592
fix(bzlmod): set the default_version to the python_version flag #2253
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
Merged
aignas
merged 19 commits into
bazel-contrib:main
from
aignas:feat/default-version-python-hub
Oct 7, 2024
Merged
Changes from all commits
Commits
Show all changes
19 commits
Select commit
Hold shift + click to select a range
2c1d0f4
fix(bzlmod): set the default_version to the python_version flag
aignas dba9902
fixup! fix(bzlmod): set the default_version to the python_version flag
aignas 88cad95
fixup! fixup! fix(bzlmod): set the default_version to the python_vers…
aignas c6e10d6
refactor: make the code readability better when constructing the sett…
aignas dde6f2f
fixup examples/bzlmod to use MINOR_MAPPING from elsewhere
aignas ac06a1e
test: fix pypy config_settings
aignas ab73e16
remove the default config setting from bzlmod in pypi hub
aignas e4cc572
fix: add pythons_hub to internal_setup
aignas 7e50e9f
remove dead code
aignas 6a9a53f
thread the MINOR_MAPPING and TOOL_VERSIONS.keys through the hub repo …
aignas 6cbe12a
move some of the constants to a versions.bzl for better naming
aignas 19f50d2
Merge branch 'main' of https://github.com/bazelbuild/rules_python int…
rickeylev 0ee8ada
fix loading of minor_mapping
rickeylev 3c770d0
Merge branch 'main' into feat/default-version-python-hub
aignas 81c5e79
comment: fix comment in pypi config_settings module
aignas d53bc4a
comment: remove if bzlmod enabled from internal_setup because it is noop
aignas b2378ff
Merge branch 'main' into feat/default-version-python-hub
aignas b03beb1
fix the 'MINOR_MAPPING' import for the register_multi_toolchains
aignas e6bb17d
fixup the bzl_library deps
aignas File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
Hm, maybe we should expose python_version_major_minor as a public setting. Otherwise, users don't have a good way to perform e.g.
select({"3.10": ..., "3.11": ...})
, which is the most common type of selection on python version.Don't have to address in this PR though.