diff --git a/WORKSPACE b/WORKSPACE index 50dab01..fa8fd72 100644 --- a/WORKSPACE +++ b/WORKSPACE @@ -20,11 +20,15 @@ http_archive( http_archive( name = "rules_python", - sha256 = "84aec9e21cc56fbc7f1335035a71c850d1b9b5cc6ff497306f84cced9a769841", - strip_prefix = "rules_python-0.23.1", - url = "https://github.com/bazelbuild/rules_python/releases/download/0.23.1/rules_python-0.23.1.tar.gz", + sha256 = "5868e73107a8e85d8f323806e60cad7283f34b32163ea6ff1020cf27abef6036", + strip_prefix = "rules_python-0.25.0", + url = "https://github.com/bazelbuild/rules_python/releases/download/0.25.0/rules_python-0.25.0.tar.gz", ) +load("@rules_python//python:repositories.bzl", "py_repositories") + +py_repositories() + load("@rules_python//python:repositories.bzl", "python_register_toolchains") python_register_toolchains( diff --git a/python_requirements_lock.bzl b/python_requirements_lock.bzl index 26a20fc..ac0159b 100755 --- a/python_requirements_lock.bzl +++ b/python_requirements_lock.bzl @@ -10,6 +10,8 @@ all_requirements = ["@pip_orjson//:pkg"] all_whl_requirements = ["@pip_orjson//:whl"] +all_data_requirements = ["@pip_orjson//:data"] + _packages = [("pip_orjson", "orjson==3.9.1")] _config = {"download_only": False, "enable_implicit_namespace_pkgs": False, "environment": {}, "extra_pip_args": [], "isolated": True, "pip_data_exclude": [], "python_interpreter": "python3", "python_interpreter_target": "@python_toolchain_x86_64-unknown-linux-gnu//:bin/python3", "quiet": True, "repo": "pip", "repo_prefix": "pip_", "timeout": 600} _annotations = {}