We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c8e813b commit 68b9a34Copy full SHA for 68b9a34
3 files changed
Makefile
@@ -49,10 +49,9 @@ build:
49
build_wasm:
50
@echo "Building WASM to bin/"
51
@mkdir -p bin
52
- py2wasm src/openapi_client/cli.py -o bin/cdd-python-all.wasm
+ uv run py2wasm src/openapi_client/cli.py -o bin/cdd-python-all.wasm
53
test:
54
- pytest tests/
55
-
+ uv run pytest tests/
56
run: build
57
python3 -m openapi_client.cli $(RUN_ARGS) || cdd-python $(RUN_ARGS)
58
pyproject.toml
@@ -7,7 +7,7 @@ name = "openapi-python-client"
7
version = "0.0.1"
8
description = "OpenAPI 3.2.0 Python Client"
9
readme = "README.md"
10
-requires-python = ">=3.9"
+requires-python = ">=3.9,<3.14"
11
dependencies = [
12
"pydantic>=2.0",
13
"libcst",
0 commit comments