build: pin smart_open to 6.4.0 or lower
This is a temporary workaround to resolve a bug in smart_open 7.0. Moonraker does not depend on smart_open directly or use its functionality, however `streaming_form_data` pulls in in. Signed-off-by: Eric Callahan <arksine.code@gmail.com>
This commit is contained in:
parent
0850c16b00
commit
9813011db2
|
@ -25,7 +25,8 @@ dependencies = [
|
||||||
"dbus-next==0.2.3",
|
"dbus-next==0.2.3",
|
||||||
"apprise==1.7.0",
|
"apprise==1.7.0",
|
||||||
"ldap3==2.9.1",
|
"ldap3==2.9.1",
|
||||||
"python-periphery==2.4.1"
|
"python-periphery==2.4.1",
|
||||||
|
"smart_open<=6.4.0"
|
||||||
]
|
]
|
||||||
requires-python = ">=3.7"
|
requires-python = ">=3.7"
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
|
|
|
@ -20,3 +20,4 @@ dbus-next==0.2.3
|
||||||
apprise==1.7.1
|
apprise==1.7.1
|
||||||
ldap3==2.9.1
|
ldap3==2.9.1
|
||||||
python-periphery==2.4.1
|
python-periphery==2.4.1
|
||||||
|
smart_open<=6.4.0
|
||||||
|
|
Loading…
Reference in New Issue