duckrun 0.2.8.dev0__tar.gz → 0.2.9.dev0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: duckrun
3
- Version: 0.2.8.dev0
3
+ Version: 0.2.9.dev0
4
4
  Summary: Lakehouse task runner powered by DuckDB for Microsoft Fabric
5
5
  Author: mim
6
6
  License: MIT
@@ -82,6 +82,15 @@ class Duckrun:
82
82
 
83
83
  self.con = duckdb.connect()
84
84
  self.con.sql("SET preserve_insertion_order = false")
85
+
86
+ # Configure Azure transport for Colab (fixes SSL cert issues)
87
+ try:
88
+ import google.colab # type: ignore
89
+ self.con.sql("SET azure_transport_option_type = 'curl'")
90
+ print("🔧 Colab detected - using curl transport for Azure")
91
+ except ImportError:
92
+ pass # Not in Colab, use default transport
93
+
85
94
  self._attach_lakehouse()
86
95
 
87
96
  @classmethod
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: duckrun
3
- Version: 0.2.8.dev0
3
+ Version: 0.2.9.dev0
4
4
  Summary: Lakehouse task runner powered by DuckDB for Microsoft Fabric
5
5
  Author: mim
6
6
  License: MIT
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "duckrun"
7
- version = "0.2.8.dev0"
7
+ version = "0.2.9.dev0"
8
8
  description = "Lakehouse task runner powered by DuckDB for Microsoft Fabric"
9
9
  readme = "README.md"
10
10
  license = {text = "MIT"}
File without changes
File without changes
File without changes