diff --git a/pyiceberg/catalog/__init__.py b/pyiceberg/catalog/__init__.py index aad225eae6..790698c2a0 100644 --- a/pyiceberg/catalog/__init__.py +++ b/pyiceberg/catalog/__init__.py @@ -70,8 +70,6 @@ RecursiveDict, ) from pyiceberg.utils.config import Config, merge_config -from pyiceberg.utils.deprecated import deprecated as deprecated -from pyiceberg.utils.deprecated import deprecation_message if TYPE_CHECKING: import pyarrow as pa @@ -107,8 +105,6 @@ re.X, ) -DEPRECATED_BOTOCORE_SESSION = "botocore_session" - class CatalogType(Enum): REST = "rest" @@ -744,13 +740,6 @@ class MetastoreCatalog(Catalog, ABC): def __init__(self, name: str, **properties: str): super().__init__(name, **properties) - if self.properties.get(DEPRECATED_BOTOCORE_SESSION): - deprecation_message( - deprecated_in="0.8.0", - removed_in="0.9.0", - help_message=f"The property {DEPRECATED_BOTOCORE_SESSION} is deprecated and will be removed.", - ) - def create_table_transaction( self, identifier: Union[str, Identifier],