fix: Make sure dependency pins are working with pip install

Part-of: <https://dev.funkwhale.audio/funkwhale/funkwhale/-/merge_requests/2485>
This commit is contained in:
Georg Krause 2023-06-14 12:04:22 +02:00 committed by Marge
parent 7af1dfd19e
commit bfcafc8f72
3 changed files with 722 additions and 588 deletions

1307
api/poetry.lock generated

File diff suppressed because it is too large Load Diff

View File

@ -86,7 +86,7 @@ sentry-sdk = "==1.12.1"
watchdog = "==2.2.1"
# Dependencies pinning
importlib-metadata = { version = "==4.13.0", python = "<=3.7" }
importlib-metadata = { version = "==4.13.0", python = "^3.7" }
ipython = "==7.34.0"
pluralizer = "==1.2.0"
service-identity = "==21.1.0"

View File

@ -0,0 +1 @@
Make sure dependency pins are working with pip install (Restores python3.7 support)