We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6fab829 commit 5950691Copy full SHA for 5950691
src/asyncapi_python_pants/rules.py
@@ -38,11 +38,10 @@ async def generate_python_from_asyncapi(
38
PexRequest(
39
output_filename="asyncapi-python-codegen.pex",
40
internal_only=True,
41
- requirements=PexRequirements(
42
- [f"asyncapi-python[codegen]=={version('asyncapi-python')}"]
43
- ),
+ requirements=PexRequirements([]),
44
interpreter_constraints=InterpreterConstraints([">=3.9"]),
45
main=ConsoleScript("asyncapi-python-codegen"),
+ pex_path=[],
46
),
47
)
48
transitive_targets = await Get(
0 commit comments