Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions .claude/settings.local.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
{
"$schema": "https://json.schemastore.org/claude-code-settings.json",
"permissions": {
"allow": [
"Bash(*)",
"Bash(gh:*)",
"Bash(pip:*)",
"Bash(mypy:*)",
"Bash(python:*)"
],
"deny": []
}
}
2 changes: 1 addition & 1 deletion .github/workflows/claude.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,4 +34,4 @@ jobs:
with:
anthropic_api_key: ${{ secrets.ANTHROPIC_API_KEY }}
timeout_minutes: "60"
allowed_tools: 'Bash(*),Bash(gh *),Bash(pip *),Bash(mypy *),Bash(python *),Bash(mypy servc --check-untyped-defs),Bash(pip install -r requirements-dev.txt)'
allowed_tools: 'Bash(*),Bash(gh:*),Bash(pip:*),Bash(mypy:*),Bash(python:*)'
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@ simplejson==3.20.1
flask==3.1.1
pyyaml==6.0.2
pyiceberg[sql-sqlite,pyarrow]==0.8.1
deltalake==0.25.5
deltalake==1.1.3
azure-servicebus==7.14.2
4 changes: 2 additions & 2 deletions servc/svc/com/storage/delta.py
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,6 @@ def overwrite(
storage_options=self._storageOptions,
mode="overwrite",
predicate=predicate,
engine="rust",
)
return True

Expand Down Expand Up @@ -181,7 +180,8 @@ def read(
def getSchema(self) -> Schema | None:
table = self.getConn()

return table.schema().to_pyarrow()
arrow_schema = table.schema().to_arrow()
return pa.schema(arrow_schema) # type: ignore[arg-type]

def _close(self):
if self._isOpen:
Expand Down
Loading