-
Notifications
You must be signed in to change notification settings - Fork 93
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[BUG] AttributeError
in PandasDataFrame.__init__
with triad>=0.9.2
#526
Comments
AttributeError
in PandasDataFrame.__init__
with triad>=0.9.2
Ah, sorry, but I think Fugue side has finished the change to depend on dask-sql when the backend is dask, I will make a pr to dask-sql to remove the unnecessary part. |
Hey, I'm also affected by this bug, using Spark backend. Some relevant requirements: adtk==0.6.2
pyod==1.0.1
numpy==1.22.3
fugue==0.8.3 My application suddenly stopped working from one deployment to another. It seems like the setup.py of fugue pins down versions in a rather risky way: "triad>=0.9.3",
"adagio>=0.2.4",
# sql dependencies
"qpd>=0.4.4",
"fugue-sql-antlr>=0.1.6", So I'm guessing
"triad<=0.9.3",
"adagio<=0.2.4",
# sql dependencies
"qpd<=0.4.4",
"fugue-sql-antlr<=0.1.6", This would ensure sub-dependencies are only updated with a specific version update on fugue.
|
Agreed. Using only |
Minimal Code To Reproduce
Describe the bug
When pulling in
triad>=0.9.2
, the above reproducer fails due to a missingenforce_type
attribute:Expected behavior
With
triad=0.9.1
, running the above workflow would succeed.Environment (please complete the following information):
The text was updated successfully, but these errors were encountered: