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
1 change: 1 addition & 0 deletions .github/workflows/samples-python-petstore.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ on:
pull_request:
paths:
- samples/openapi3/client/petstore/python-aiohttp/**
- samples/openapi3/client/petstore/python-httpx/**
- samples/openapi3/client/petstore/python/**
- .github/workflows/samples-python-petstore.yaml

Expand Down
1 change: 1 addition & 0 deletions bin/configs/python-httpx.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ inputSpec: modules/openapi-generator/src/test/resources/3_0/python/petstore-with
templateDir: modules/openapi-generator/src/main/resources/python
library: httpx
additionalProperties:
buildSystem: hatchling
packageName: petstore_api
mapNumberTo: float
poetry1: false
Expand Down
4 changes: 2 additions & 2 deletions samples/openapi3/client/petstore/python-httpx/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@ mypy = ">= 1.5"


[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
requires = ["hatchling"]
build-backend = "hatchling.build"

[tool.pylint.'MESSAGES CONTROL']
extension-pkg-whitelist = "pydantic"
Expand Down
Loading