Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
publish-to-bcr-bot[bot] and mark-thm authored Dec 2, 2024
1 parent fe8b34e commit fb6b618
Show file tree
Hide file tree
Showing 4 changed files with 58 additions and 1 deletion.
36 changes: 36 additions & 0 deletions modules/rules_pydeps/0.2.0/MODULE.bazel
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
"rules_pydeps"

module(
name = "rules_pydeps",
version = "0.2.0",
)

bazel_dep(name = "bazel_skylib", version = "1.4.1")
bazel_dep(name = "buildifier_prebuilt", version = "7.3.1")
bazel_dep(name = "platforms", version = "0.0.8")
bazel_dep(name = "rules_python", version = "0.40.0")
bazel_dep(name = "rules_uv", version = "0.21.0")

# configuration
PYTHON_VERSION = "3.12"

PYTHON_VERSION_SNAKE = PYTHON_VERSION.replace(".", "_")

python = use_extension("@rules_python//python/extensions:python.bzl", "python")
python.toolchain(
is_default = True,
python_version = PYTHON_VERSION,
)
use_repo(python, "python_" + PYTHON_VERSION_SNAKE, "python_versions")

pip = use_extension("@rules_python//python/extensions:pip.bzl", "pip")
pip.parse(
enable_implicit_namespace_pkgs = True,
experimental_index_url = "https://pypi.org/simple", # use Bazel downloader
hub_name = "rules_pydeps_pip",
python_version = PYTHON_VERSION,
requirements_by_platform = {
"//pydeps/private:requirements.txt": "*",
},
)
use_repo(pip, "rules_pydeps_pip")
15 changes: 15 additions & 0 deletions modules/rules_pydeps/0.2.0/presubmit.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
matrix:
platform:
- debian10
- ubuntu2004
- macos
- macos_arm64
bazel:
- 7.x
tasks:
verify_targets:
name: Verify build targets
platform: ${{ platform }}
bazel: ${{ bazel }}
build_targets:
- "@rules_pydeps//..."
5 changes: 5 additions & 0 deletions modules/rules_pydeps/0.2.0/source.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"integrity": "sha256-+SpMyPU0cn0jquh00zrjCWxnmw14Lz+xUCvFmN/p0Ew=",
"strip_prefix": "rules_pydeps-0.2.0",
"url": "https://github.com/theoremlp/rules_pydeps/releases/download/v0.2.0/rules_pydeps-0.2.0.tar.gz"
}
3 changes: 2 additions & 1 deletion modules/rules_pydeps/metadata.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,8 @@
],
"versions": [
"0.1.1",
"0.1.2"
"0.1.2",
"0.2.0"
],
"yanked_versions": {}
}

0 comments on commit fb6b618

Please sign in to comment.