Skip to content

Commit

Permalink
[Release] Synchronize for release (#71)
Browse files Browse the repository at this point in the history
  • Loading branch information
reboot-dev-bot authored Nov 19, 2024
1 parent 4b276dc commit 3dc7691
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 8 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@ on:
# Run CI on pull requests. Passing checks will be required to merge.
branches:
- "**"
merge_group:
# Required if we want to use GitHub's Merge Queue feature. See:
# https://docs.github.com/en/repositories/configuring-branches-and-merges-in-your-repository/configuring-pull-request-merges/managing-a-merge-queue#triggering-merge-group-checks-with-github-actions

concurrency:
# Have at most one of these workflows running per branch, cancelling older
Expand Down
2 changes: 1 addition & 1 deletion BUILD.bazel
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# This `BUILD.bazel` file allows a `bazel` system (configured outside of this
# repository) to use code in this directory and its subdirectories.

load("@com_github_reboot_dev_respect//reboot/examples:rules.bzl", "write_templated_source_file")
load("@com_github_reboot_dev_mono//reboot/examples:rules.bzl", "write_templated_source_file")

filegroup(
name = "everything",
Expand Down
2 changes: 1 addition & 1 deletion bank/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ def configure_parser() -> argparse.ArgumentParser:
parser.add_argument(
"--gateway_address",
type=str,
default="dev.localhost.direct:9991",
default="localhost:9991",
)
parser.add_argument(
"--bank_id",
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
[project]
requires-python = ">= 3.10"
dependencies = [
"reboot==0.18.0",
"reboot==0.19.0",
]

[tool.rye]
dev-dependencies = [
"mypy==1.2.0",
"pytest>=7.4.2",
"types-protobuf>=4.24.0.20240129",
"reboot==0.18.0",
"reboot==0.19.0",
]

# This project only uses `rye` to provide `python` and its dependencies, so
Expand Down
6 changes: 4 additions & 2 deletions requirements-dev.lock
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ psutil==6.0.0
# via reboot
pycparser==2.22
# via cffi
pyjwt==2.9.0
pyjwt==2.8.0
# via reboot
pyprctl==0.1.3
# via reboot
Expand All @@ -104,12 +104,14 @@ python-dateutil==2.9.0.post0
pyyaml==6.0.2
# via kubernetes-asyncio
# via reboot
reboot==0.18.0
reboot==0.19.0
setuptools==75.1.0
# via grpcio-tools
six==1.16.0
# via kubernetes-asyncio
# via python-dateutil
tabulate==0.9.0
# via reboot
tomli==2.0.1
# via mypy
# via pytest
Expand Down
6 changes: 4 additions & 2 deletions requirements.lock
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ psutil==6.0.0
# via reboot
pycparser==2.22
# via cffi
pyjwt==2.9.0
pyjwt==2.8.0
# via reboot
pyprctl==0.1.3
# via reboot
Expand All @@ -93,12 +93,14 @@ python-dateutil==2.9.0.post0
pyyaml==6.0.2
# via kubernetes-asyncio
# via reboot
reboot==0.18.0
reboot==0.19.0
setuptools==75.1.0
# via grpcio-tools
six==1.16.0
# via kubernetes-asyncio
# via python-dateutil
tabulate==0.9.0
# via reboot
types-protobuf==5.28.0.20240924
# via mypy-protobuf
typing-extensions==4.9.0
Expand Down

0 comments on commit 3dc7691

Please sign in to comment.