Skip to content

Commit ea9b0ef

Browse files
authored
Merge branch 'main' into fix-stage1-bootstrap-following-symlink
2 parents 0294914 + 175fe4c commit ea9b0ef

File tree

89 files changed

+851
-317
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

89 files changed

+851
-317
lines changed

.bcr/gazelle/metadata.template.json

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
{
2-
"homepage": "https://github.com/bazelbuild/rules_python",
2+
"homepage": "https://github.com/bazel-contrib/rules_python",
33
"maintainers": [
44
{
55
"name": "Richard Levasseur",
6-
"email": "rlevasseur@google.com",
6+
"email": "richardlev@gmail.com",
77
"github": "rickeylev"
88
},
99
{
@@ -13,7 +13,8 @@
1313
}
1414
],
1515
"repository": [
16-
"github:bazelbuild/rules_python"
16+
"github:bazelbuild/rules_python",
17+
"github:bazel-contrib/rules_python"
1718
],
1819
"versions": [],
1920
"yanked_versions": {}

.bcr/metadata.template.json

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
{
2-
"homepage": "https://github.com/bazelbuild/rules_python",
2+
"homepage": "https://github.com/bazel-contrib/rules_python",
33
"maintainers": [
44
{
55
"name": "Richard Levasseur",
6-
"email": "rlevasseur@google.com",
6+
"email": "richardlev@gmail.com",
77
"github": "rickeylev"
88
},
99
{
@@ -13,7 +13,8 @@
1313
}
1414
],
1515
"repository": [
16-
"github:bazelbuild/rules_python"
16+
"github:bazelbuild/rules_python",
17+
"github:bazel-contrib/rules_python"
1718
],
1819
"versions": [],
1920
"yanked_versions": {}

.github/workflows/create_archive_and_notes.sh

+4-4
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ set -o errexit -o nounset -o pipefail
1717

1818
# Exclude dot directories, specifically, this file so that we don't
1919
# find the substring we're looking for in our own file.
20-
# Exclude CONTRIBUTING.md because it documents how to use these strings.
21-
if grep --exclude=CONTRIBUTING.md --exclude-dir=.* VERSION_NEXT_ -r; then
20+
# Exclude CONTRIBUTING.md, RELEASING.md because they document how to use these strings.
21+
if grep --exclude=CONTRIBUTING.md --exclude=RELEASING.md --exclude-dir=.* VERSION_NEXT_ -r; then
2222
echo
2323
echo "Found VERSION_NEXT markers indicating version needs to be specified"
2424
exit 1
@@ -72,7 +72,7 @@ http_archive(
7272
name = "rules_python",
7373
sha256 = "${SHA}",
7474
strip_prefix = "${PREFIX}",
75-
url = "https://github.com/bazelbuild/rules_python/releases/download/${TAG}/rules_python-${TAG}.tar.gz",
75+
url = "https://github.com/bazel-contrib/rules_python/releases/download/${TAG}/rules_python-${TAG}.tar.gz",
7676
)
7777
7878
load("@rules_python//python:repositories.bzl", "py_repositories")
@@ -90,7 +90,7 @@ http_archive(
9090
name = "rules_python_gazelle_plugin",
9191
sha256 = "${SHA}",
9292
strip_prefix = "${PREFIX}/gazelle",
93-
url = "https://github.com/bazelbuild/rules_python/releases/download/${TAG}/rules_python-${TAG}.tar.gz",
93+
url = "https://github.com/bazel-contrib/rules_python/releases/download/${TAG}/rules_python-${TAG}.tar.gz",
9494
)
9595
9696
# To compile the rules_python gazelle extension from source,

.github/workflows/release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
# This special value tells pypi that the user identity is supplied within the token
3434
TWINE_USERNAME: __token__
3535
# Note, the PYPI_API_TOKEN is for the rules-python pypi user, added by @rickylev on
36-
# https://github.com/bazelbuild/rules_python/settings/secrets/actions
36+
# https://github.com/bazel-contrib/rules_python/settings/secrets/actions
3737
TWINE_PASSWORD: ${{ secrets.PYPI_API_TOKEN }}
3838
run: bazel run --stamp --embed_label=${{ github.ref_name }} //python/runfiles:wheel.publish
3939
- name: Release

BZLMOD_SUPPORT.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ In general `bzlmod` has more features than `WORKSPACE` and users are encouraged
1111

1212
## Configuration
1313

14-
The releases page will give you the latest version number, and a basic example. The release page is located [here](/bazelbuild/rules_python/releases).
14+
The releases page will give you the latest version number, and a basic example. The release page is located [here](/bazel-contrib/rules_python/releases).
1515

1616
## What is bzlmod?
1717

@@ -53,7 +53,7 @@ better supported.
5353
the toolchains rules_python registers**.
5454

5555
NOTE: Regardless of your toolchain, due to
56-
[#691](https://github.com/bazelbuild/rules_python/issues/691), `rules_python`
56+
[#691](https://github.com/bazel-contrib/rules_python/issues/691), `rules_python`
5757
still relies on a local Python being available to bootstrap the program before
5858
handing over execution to the toolchain Python.
5959

0 commit comments

Comments
 (0)