Skip to content

Commit 2765df5

Browse files
authored
Merge branch 'main' into b028
2 parents 7c0ed93 + 1220295 commit 2765df5

4 files changed

Lines changed: 9 additions & 10 deletions

File tree

pyiceberg/expressions/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ class Term(Generic[L], ABC):
131131
"""A simple expression that evaluates to a value."""
132132

133133

134-
class Bound(ABC):
134+
class Bound:
135135
"""Represents a bound value expression."""
136136

137137

pyiceberg/table/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1783,7 +1783,7 @@ def with_case_sensitive(self: S, case_sensitive: bool = True) -> S:
17831783
def count(self) -> int: ...
17841784

17851785

1786-
class ScanTask(ABC):
1786+
class ScanTask:
17871787
pass
17881788

17891789

pyproject.toml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,13 @@ dependencies = [
4545
"zstandard>=0.13.0,<1.0.0"
4646
]
4747

48+
[project.urls]
49+
Homepage = "https://py.iceberg.apache.org/"
50+
Repository = "https://github.com/apache/iceberg-python"
51+
52+
[project.scripts]
53+
pyiceberg = "pyiceberg.cli.console:run"
54+
4855
[project.optional-dependencies]
4956
pyarrow = [
5057
"pyarrow>=17.0.0",
@@ -93,13 +100,6 @@ pyiceberg-core = ["pyiceberg-core>=0.5.1,<0.8.0"]
93100
datafusion = ["datafusion>=45,<49"]
94101
gcp-auth = ["google-auth>=2.4.0"]
95102

96-
[project.urls]
97-
Homepage = "https://py.iceberg.apache.org/"
98-
Repository = "https://github.com/apache/iceberg-python"
99-
100-
[project.scripts]
101-
pyiceberg = "pyiceberg.cli.console:run"
102-
103103
[dependency-groups]
104104
dev = [
105105
"pytest==7.4.4",

ruff.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,6 @@ select = [
5959
]
6060
ignore = [
6161
"E501",
62-
"B024",
6362
"UP037",
6463
"UP035",
6564
"UP006"

0 commit comments

Comments
 (0)