Skip to content

Commit

Permalink
rules_mypy@0.6.0 (#2680)
Browse files Browse the repository at this point in the history
Release: https://github.com/theoremlp/rules_mypy/releases/tag/v0.6.0

_Automated by [Publish to BCR](https://github.com/apps/publish-to-bcr)_

Co-authored-by: Mark Elliot <123787712+mark-thm@users.noreply.github.com>
  • Loading branch information
publish-to-bcr-bot[bot] and mark-thm committed Aug 26, 2024
1 parent db418c3 commit f41731c
Show file tree
Hide file tree
Showing 4 changed files with 58 additions and 1 deletion.
36 changes: 36 additions & 0 deletions modules/rules_mypy/0.6.0/MODULE.bazel
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
"rules_mypy"

module(
name = "rules_mypy",
version = "0.6.0",
)

bazel_dep(name = "bazel_skylib", version = "1.4.1")
bazel_dep(name = "buildifier_prebuilt", version = "6.1.2")
bazel_dep(name = "platforms", version = "0.0.8")
bazel_dep(name = "rules_python", version = "0.34.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_mypy_pip",
python_version = PYTHON_VERSION,
requirements_by_platform = {
"//mypy/private:requirements.txt": "*",
},
)
use_repo(pip, "rules_mypy_pip")
15 changes: 15 additions & 0 deletions modules/rules_mypy/0.6.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_mypy//..."
5 changes: 5 additions & 0 deletions modules/rules_mypy/0.6.0/source.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"integrity": "sha256-YRlHhkH3Qt9fUTIZKNy9RFkQ8RRuwvOz5+KxnKyOt7s=",
"strip_prefix": "rules_mypy-0.6.0",
"url": "https://github.com/theoremlp/rules_mypy/releases/download/v0.6.0/rules_mypy-0.6.0.tar.gz"
}
3 changes: 2 additions & 1 deletion modules/rules_mypy/metadata.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,8 @@
"0.2.0",
"0.3.1",
"0.4.0",
"0.5.0"
"0.5.0",
"0.6.0"
],
"yanked_versions": {}
}

0 comments on commit f41731c

Please sign in to comment.