orderedmultidict
orderedmultidict copied to clipboard
Release new version with latest code
I ran into https://github.com/gruns/orderedmultidict/issues/25 today and while it's fixed in the latest code that code has not been released on PyPi. Can a new release be made?
Same here :) A new release would be great, had to pin down orderedmultidict to v1.0 on python 3.9 to get around this issue!
+1
Bumping with hope that package author sees it :)
Hello
I ran into #25 all the same. While waiting for the new release, you can use the following PyInstaller hook that works for me.
from PyInstaller.utils.hooks import collect_data_files
module_collection_mode = "py+pyz"
hiddenimports = ["orderedmultidict.__version__"]
datas = collect_data_files('orderedmultidict')
I placed it in a sub-directory pyi-hooks/hook-orderedmultidict.py
of my program and added hookspath=["pyi-hooks"]
to the Analysis
call in my spec
file.
Yet another bump, please update the package!
+1 plz release 🙏