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
4 changes: 2 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Generated proto stubs — run `make proto` to regenerate
coordinode/_proto/
coordinode/coordinode/_proto/

# Build artifacts
dist/
Expand All @@ -17,7 +17,7 @@ venv/
env/

# Version files generated by hatch-vcs
coordinode/_version.py
coordinode/coordinode/_version.py
langchain-coordinode/langchain_coordinode/_version.py
llama-index-coordinode/llama_index/graph_stores/coordinode/_version.py
GAPS.md
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
.PHONY: proto proto-check install install-pip test test-unit test-integration lint clean

PROTO_SRC := proto
PROTO_OUT := coordinode/_proto
PROTO_OUT := coordinode/coordinode/_proto
PYTHON ?= python3

# Generate gRPC stubs from proto submodule into coordinode/_proto/
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
4 changes: 2 additions & 2 deletions coordinode/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -48,10 +48,10 @@ fallback-version = "0.0.0"
raw-options = {root = ".."}

[tool.hatch.build.hooks.vcs]
version-file = "_version.py"
version-file = "coordinode/_version.py"

[tool.hatch.build.targets.wheel]
sources = {"." = "coordinode"}
packages = ["coordinode"]

[tool.pytest.ini_options]
asyncio_mode = "auto"
Expand Down
Loading