File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -49,11 +49,13 @@ install-dev-dbt-%:
4949 $(MAKE ) install-dev; \
5050 if [ " $$ version" = " 1.6.0" ]; then \
5151 echo " Applying overrides for dbt 1.6.0" ; \
52- $(PIP ) install ' pydantic>=2.0.0' ' google-cloud-bigquery==3.30.0' ' databricks-sdk==0.28.0' --reinstall; \
52+ $(PIP ) install ' pydantic>=2.0.0' ' google-cloud-bigquery==3.30.0' ' databricks-sdk==0.28.0' \
53+ ' pyOpenSSL>=24.0.0' --reinstall; \
5354 fi ; \
5455 if [ " $$ version" = " 1.7.0" ]; then \
5556 echo " Applying overrides for dbt 1.7.0" ; \
56- $(PIP ) install ' databricks-sdk==0.28.0' --reinstall; \
57+ $(PIP ) install ' databricks-sdk==0.28.0' \
58+ ' pyOpenSSL>=24.0.0' --reinstall; \
5759 fi ; \
5860 if [ " $$ version" = " 1.5.0" ]; then \
5961 echo " Applying overrides for dbt 1.5.0" ; \
Original file line number Diff line number Diff line change @@ -246,9 +246,7 @@ def wrap(*args: t.Any, **kwargs: t.Any) -> t.Any:
246246
247247
248248class classproperty (property ):
249- """
250- Similar to a normal property but works for class methods
251- """
249+ """Similar to a normal property but works for class methods"""
252250
253251 def __get__ (self , obj : t .Any , owner : t .Any = None ) -> t .Any :
254252 return classmethod (self .fget ).__get__ (None , owner )() # type: ignore
You can’t perform that action at this time.
0 commit comments