install on python3.9 not smooth
sebgoa opened this issue · comments
sebgoa commented
Hi, this looks great but I am trying to use it and I am struggling.
I get this error:
File "/usr/local/lib/python3.9/site-packages/uvicorn/config.py", line 458, in load
self.loaded_app = import_from_string(self.app)
File "/usr/local/lib/python3.9/site-packages/uvicorn/importer.py", line 21, in import_from_string
module = importlib.import_module(module_str)
File "/usr/local/Cellar/python@3.9/3.9.13_1/Frameworks/Python.framework/Versions/3.9/lib/python3.9/importlib/__init__.py", line 127, in import_module
return _bootstrap._gcd_import(name[level:], package, level)
File "<frozen importlib._bootstrap>", line 1030, in _gcd_import
File "<frozen importlib._bootstrap>", line 1007, in _find_and_load
File "<frozen importlib._bootstrap>", line 986, in _find_and_load_unlocked
File "<frozen importlib._bootstrap>", line 680, in _load_unlocked
File "<frozen importlib._bootstrap_external>", line 850, in exec_module
File "<frozen importlib._bootstrap>", line 228, in _call_with_frames_removed
File "/Users/sebgoa/Desktop/localcompose/./main.py", line 7, in <module>
app = install_fastapi_cloudevents(app)
File "/usr/local/lib/python3.9/site-packages/fastapi_cloudevents/installation.py", line 33, in install_fastapi_cloudevents
if app.default_response_class != JSONResponse:
AttributeError: 'FastAPI' object has no attribute 'default_response_class'
I am using fastAPI 0.80.0
Sasha Tkachev commented
On it
Sasha Tkachev commented
Thank you very much for the report!
Sasha Tkachev commented
This is a breaking change which was introduced in fastapi-0.62.0
Very simple fix. Will deploy a new version soon
Sasha Tkachev commented
@sebgoa The release has been deployed to PYPI and can be installed via pip install "fastapi-cloudevents>=1.0.2"
.
Thank you again for raising this issue :)
sebgoa commented
great, thanks so much, it seems to be running now