diff --git a/swh/core/api/__init__.py b/swh/core/api/__init__.py --- a/swh/core/api/__init__.py +++ b/swh/core/api/__init__.py @@ -14,7 +14,6 @@ from typing import ClassVar, Optional, Type -from deprecated import deprecated from flask import Flask, Request, Response, request, abort from .serializers import (decode_response, encode_data_client as encode_data, @@ -329,21 +328,3 @@ # Call the actual code obj_meth = getattr(backend_factory(), meth_name) return encode_data_server(obj_meth(**decode_request(request))) - - -@deprecated(version='0.0.64', - reason='Use the RPCServerApp instead') -class SWHServerAPIApp(RPCServerApp): - pass - - -@deprecated(version='0.0.64', - reason='Use the MetaRPCClient instead') -class MetaSWHRemoteAPI(MetaRPCClient): - pass - - -@deprecated(version='0.0.64', - reason='Use the RPCClient instead') -class SWHRemoteAPI(RPCClient): - pass