Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[pull] main from google:main #72

Closed
wants to merge 21 commits into from
Closed
Changes from 1 commit
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
731086c
Try using `p0deje/setup-bazel` everywhere.
junyer Feb 13, 2024
b4c6fe0
Bump version of `p0deje/setup-bazel` to address warnings.
junyer Feb 13, 2024
ed9fc26
Update @apple_support to version 1.12.0.
junyer Feb 15, 2024
2aa303b
Update @pybind11_bazel to version 2.11.1.bzl.2.
junyer Feb 16, 2024
d00d1e9
Avoid `invalid escape sequence` errors on Windows.
junyer Feb 16, 2024
477b9f9
Clean up uses of `repo_name` in `MODULE.bazel`.
junyer Feb 18, 2024
6bb550b
Disable warning for missing-field-initializers as well for clang.
Feb 18, 2024
0ff0fab
Fix an ancient bug in prefix factoring.
junyer Feb 19, 2024
f9550c3
Fix more ancient bugs around Latin-1 handling.
junyer Feb 19, 2024
2d866a3
Prepare to tag release `2024-03-01`.
junyer Feb 29, 2024
45c9985
Update @pybind11_bazel to version 2.11.1.bzl.3.
junyer Mar 2, 2024
8695a63
Disable MSYS/MSYS2 path conversion, which interferes with Bazel.
junyer Mar 4, 2024
dbf15a2
Use try-import to load an optional user-specific user.bazelrc
hzeller Mar 2, 2024
27536b0
Delete an old comment.
junyer Mar 7, 2024
ddb3414
Add Clang 18 to the build matrix.
junyer Mar 11, 2024
108914d
`p0deje/setup-bazel` has been transferred to `bazel-contrib`.
junyer Mar 11, 2024
58f6cdd
doc/mksyntaxgo: use standard generated Go header
alexandear Mar 15, 2024
5c5c8ed
Fix the link to the Python wrapper.
junyer Mar 17, 2024
db46d1e
Bump versions of actions to latest releases.
junyer Mar 17, 2024
1250a99
Raise `re2.error` instead of crashing.
junyer Mar 17, 2024
6598a8e
Make compiling a no-op if it's attempted before adding any patterns.
junyer Mar 18, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Avoid invalid escape sequence errors on Windows.
Change-Id: I3ed566fb37f235190b5fe91dfd07f575173a6aca
Reviewed-on: https://code-review.googlesource.com/c/re2/+/62711
Reviewed-by: Alex Chernyakhovsky <achernya@google.com>
Reviewed-by: Paul Wankadia <junyer@google.com>
  • Loading branch information
junyer committed Feb 16, 2024
commit d00d1e93781e6ebe415771a952689dff8f260d44
2 changes: 1 addition & 1 deletion python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ def generate_python_toolchains(self):
cc_library(
name = "libraries",
)
""".format(interpreter_path=sys.executable,
""".format(interpreter_path=sys.executable.replace('\\', '/'),
major=sys.version_info.major,
minor=sys.version_info.minor))

Expand Down