pgjones / quart-schema

Quart-Schema is a Quart extension that provides schema validation and auto-generated API documentation.
MIT License
76 stars 24 forks source link

Allow dependency versions to pull minor changes only #47

Closed mittalmehul closed 1 year ago

mittalmehul commented 1 year ago

Case: The release of Pydantic v2 has broken the code Issue: All the dependencies are marked to pull the latest version regardless of changes made which lead to failure Solution: Update the dependency notations as vX.X. or vX. alternatively we can specify it as >=v1.10,<v2.0 Kindly check screenshots for reference Impacts : All release tags

Screenshot 2023-07-06 at 2 03 08 PM Screenshot 2023-07-06 at 2 03 32 PM

en

Screenshot 2023-07-06 at 2 12 12 PM Screenshot 2023-07-06 at 2 01 27 PM
pgjones commented 1 year ago

It is best to use a lockfile e.g. via PDM to control this locally.