Currently python archives are tracked independently within the repo:
|
"""Python Build Standalone Versions |
|
|
|
A mapping of Python version to platform to integrity and URL for Python Build Standalone distributions. |
|
""" |
|
|
|
# AUTO-GENERATED: DO NOT MODIFY |
|
# |
|
# Update using the following command: |
|
# |
|
# ``` |
|
# bazel run //pex/private:update_python_versions |
|
# ``` |
|
|
|
PYTHON_BUILD_STANDALONE_VERSIONS = { |
But rules_python also defines their own in @rules_python//python/versions.bzl (or somewhere related) that could probably be reused.
Currently python archives are tracked independently within the repo:
rules_pex/pex/private/python_versions.bzl
Lines 1 to 14 in 7b8a093
But
rules_pythonalso defines their own in @rules_python//python/versions.bzl (or somewhere related) that could probably be reused.