Ofek Lev
Ofek Lev
```yaml components: schemas: SharedConfig: properties: proxy: properties: http: type: string https: type: string no_proxy: items: type: string type: array type: object service: type: string skip_proxy: type: boolean timeout: type: number...
```python from datamodel_code_generator import DataModelType from datamodel_code_generator.parser.openapi import OpenAPIParser SPEC = """\ components: schemas: SharedConfig: properties: proxy: properties: http: type: string https: type: string no_proxy: items: type: string type: array...
Thanks! Finally, do you know what this warning is and how it might be resolved? ``` ❯ C:\Users\ofek\AppData\Local\Programs\Python\Python311\python.exe ..\..\..\pd.py C:\USERS\OFEK\APPDATA\LOCAL\PROGRAMS\PYTHON\PYTHON311\Lib\site-packages\pydantic\main.py:292: UserWarning: Pydantic serializer warnings: Expected `Union[list[definition-ref], definition-ref, bool]` but got...
For optional fields calling this as a library does not append a ` = None` which is now required in v2 https://docs.pydantic.dev/2.0/migration/#required-optional-and-nullable-fields
Let me know if you have any questions! Environment management and configuration is probably the feature I put the most thought and design work into so I'm interested to see...
Do [environment markers](https://hatch.pypa.io/latest/config/dependency/#environment-markers) not work for this use case?
https://github.com/DataDog/integrations-core/blob/c4070ffa9cfaad57420f8e3c92a4877f62cfd5c5/.github/workflows/pr-quick-check.yml#L35-L45
The website is also down for me
All of this feedback is incredibly useful and will directly assist me in creating the workspaces feature!
@wimglenn What is not working with your explicit configuration? The default file inclusion for each target is well documented: - https://hatch.pypa.io/latest/plugins/builder/wheel/#default-file-selection - https://hatch.pypa.io/latest/plugins/builder/sdist/#default-file-selection Based on that your project seems to...