Skip to content

Commit 2edf1fd

Browse files
committed
chore: remove unused generate_models_and_client.py and compare-sdk
- Remove scripts/generate_models_and_client.py (old comparison tool) - Remove make compare-sdk target - Superseded by generate-v0-client and generate-v1-client ✨ Created with Claude Code
1 parent 7aff7f9 commit 2edf1fd

File tree

2 files changed

+1
-1078
lines changed

2 files changed

+1
-1078
lines changed

Makefile

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.PHONY: help install install-dev test test-all test-unit test-integration check-integration lint format check check-format check-lint typecheck check-docs check-docs-compliance check-feature-sync check-tracer-patterns check-no-mocks docs docs-serve docs-clean generate generate-v0-client generate-v1-client compare-sdk build-v0 build-v1 inspect-package clean clean-all
1+
.PHONY: help install install-dev test test-all test-unit test-integration check-integration lint format check check-format check-lint typecheck check-docs check-docs-compliance check-feature-sync check-tracer-patterns check-no-mocks docs docs-serve docs-clean generate generate-v0-client generate-v1-client build-v0 build-v1 inspect-package clean clean-all
22

33
# Default target
44
help:
@@ -41,7 +41,6 @@ help:
4141
@echo " make generate - Generate both v0 and v1 clients and format"
4242
@echo " make generate-v0-client - Regenerate v0 models only (datamodel-codegen)"
4343
@echo " make generate-v1-client - Generate v1 client only (openapi-python-client)"
44-
@echo " make compare-sdk - Compare generated SDK with current implementation"
4544
@echo ""
4645
@echo "Package Building:"
4746
@echo " make build-v0 - Build v0.x package (excludes _v1/)"
@@ -140,13 +139,6 @@ generate-v0-client:
140139
generate-v1-client:
141140
python scripts/generate_v1_client.py
142141

143-
compare-sdk:
144-
@if [ ! -d "comparison_output/full_sdk" ]; then \
145-
echo "❌ No generated SDK found. Run 'python scripts/generate_models_and_client.py' first."; \
146-
exit 1; \
147-
fi
148-
python comparison_output/full_sdk/compare_with_current.py
149-
150142
# Package Building
151143
build-v0:
152144
@echo "📦 Building v0.x package (excluding _v1/)..."

0 commit comments

Comments
 (0)