Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
2 changes: 1 addition & 1 deletion rats-apps/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[project]
name = "rats-apps"
description = "research analysis tools for building applications"
version = "0.15.0"
version = "0.16.0"
readme = "README.md"
requires-python = ">=3.10,<4.0"
authors = [
Expand Down
2 changes: 1 addition & 1 deletion rats-apps/src/rats/cli/_container.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ def cb(_method: Callable[..., None], *args: Any, **kwargs: Any) -> None:
click.Command(
name=command.name,
callback=partial(cb, method),
short_help=method.__doc__,
help=method.__doc__,
params=params,
)
)
Expand Down
2 changes: 1 addition & 1 deletion rats-apps/uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions rats-devtools/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[project]
name = "rats-devtools"
description = "Rats Development Tools"
version = "0.15.0"
version = "0.16.0"
readme = "README.md"
requires-python = ">=3.10,<4.0"
authors = [
Expand Down Expand Up @@ -57,7 +57,7 @@ module-name = [
namespace = true

[tool.uv.sources]
rats-apps = { path = "../rats-apps" }
rats-apps = { path = "../rats-apps", editable = true }

[project.scripts]
rats-ci = "rats.ci:main"
Expand Down
1,308 changes: 670 additions & 638 deletions rats-devtools/uv.lock

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions rats/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[project]
name = "rats"
description = "bundled research analysis tools"
version = "0.15.0"
version = "0.16.0"
readme = "README.md"
requires-python = ">=3.10,<4.0"
authors = [
Expand All @@ -14,8 +14,8 @@ license = "MIT"
dependencies = ["rats-apps", "rats-devtools"]

[tool.uv.sources]
rats-apps = { path = "../rats-apps" }
rats-devtools = { path = "../rats-devtools" }
rats-apps = { path = "../rats-apps", editable = true }
rats-devtools = { path = "../rats-devtools", editable = true }

[project.urls]
repository = "https://github.com/microsoft/rats"
Expand Down
16 changes: 8 additions & 8 deletions rats/uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading