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 .github/workflows/release-py.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
echo "$HOME/.local/bin" >> "$GITHUB_PATH"

- name: Create .venv and install deps
run: uv sync --extra dev
run: uv sync

- name: Build sdist + wheel (via make)
run: make build # runs `uv build`, outputs to dist/
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,10 @@ infrastructure overhaul.
(Bernhard Merkle, #150).

#### Infrastructure
- Changes pyproject.toml to use uv more idiomatically.
- Local devs write `uv sync` instead of `uv sync --extra dev`.
- From PyPI (with uv or pip) you can use `typeagent[dev]`
to install the dev dependencies with the package.
- Move _typeagent/_ to _src/typeagent/_ (Bernhard Merkle, #139).
- Move tests and test data to _tests/_ directory (Bernhard Merkle, #144).
- Move ancillary dirs into subdirs (Bernhard Merkle, #145).
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "uv_build"

[project]
name = "typeagent"
version = "0.3.3"
version = "0.4.0.dev"
description = "Incremental message indexing and querying pipelines using Structured RAG"
readme = { file = "README.md", content-type = "text/markdown" }
license = "MIT"
Expand Down
12 changes: 9 additions & 3 deletions tools/release.py
Original file line number Diff line number Diff line change
Expand Up @@ -449,8 +449,11 @@ def main():
)

if exit_code != 0:
print("Error: Failed to create PR", file=sys.stderr)
return 1
if args.force:
print("Warning: Failed to create PR -- you can create it yourself", file=sys.stderr)
else:
print("Error: Failed to create PR -- but you can create it yourself", file=sys.stderr)
return 1

if args.dry_run:
print(f"\n[DRY RUN] Release process completed successfully!")
Expand All @@ -461,8 +464,11 @@ def main():
print(f"\nRelease process completed successfully!")
print(f"Created branch: {branch_name}")
print(f"Created tag: {tag_name}")
print(f"Created PR: {pr_url}")
if exit_code == 0:
print(f"Created PR: {pr_url}")
print(f"\nNext steps:")
if exit_code == 0:
print(f" 0. Create the PR (since it wasn't created)")
print(f" 1. Get the PR approved and merged")
print(f" 2. The GitHub Actions release workflow will be triggered by the tag")

Expand Down
4 changes: 2 additions & 2 deletions uv.lock

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

Loading