Skip to content

Commit

Permalink
fix(overrides): sqlmodel: switch to pdm (#1745)
Browse files Browse the repository at this point in the history
* fix(overrides): sqlmodel: switch to pdm

sqlmodel migrated from Poetry to PDM with:
fastapi/sqlmodel#912

* fix(override): sqlmodel: add version conditionals
  • Loading branch information
alezkv authored Jul 30, 2024
1 parent 0ed8a1f commit 1dcd9fd
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion overrides/build-systems.json
Original file line number Diff line number Diff line change
Expand Up @@ -23010,7 +23010,14 @@
"setuptools"
],
"sqlmodel": [
"poetry-core"
{
"buildSystem": "poetry-core",
"until": "0.0.17"
},
{
"buildSystem": "pdm-backend",
"from": "0.0.17"
}
],
"sqlobject": [
"setuptools"
Expand Down

0 comments on commit 1dcd9fd

Please sign in to comment.