Skip to content

Commit

Permalink
reverted a the move of the httpx client (#60)
Browse files Browse the repository at this point in the history
* reverted a change

* bump
  • Loading branch information
yairsimantov20 authored Aug 9, 2023
1 parent 3fc1e69 commit 2961825
Show file tree
Hide file tree
Showing 8 changed files with 6 additions and 7 deletions.
1 change: 0 additions & 1 deletion changelog/improvement.md

This file was deleted.

2 changes: 1 addition & 1 deletion port_ocean/clients/port/authentication.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
from pydantic import BaseModel, Field, PrivateAttr

from port_ocean.clients.port.types import UserAgentType
from port_ocean.clients.utils import handle_status_code
from port_ocean.clients.port.utils import handle_status_code
from port_ocean.utils import get_time


Expand Down
2 changes: 1 addition & 1 deletion port_ocean/clients/port/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
from port_ocean.clients.port.types import (
KafkaCreds,
)
from port_ocean.clients.utils import handle_status_code, async_client
from port_ocean.clients.port.utils import handle_status_code, async_client
from port_ocean.exceptions.clients import KafkaCredentialsNotFound


Expand Down
2 changes: 1 addition & 1 deletion port_ocean/clients/port/mixins/blueprints.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
from loguru import logger

from port_ocean.clients.port.authentication import PortAuthentication
from port_ocean.clients.utils import handle_status_code
from port_ocean.clients.port.utils import handle_status_code
from port_ocean.core.models import Blueprint


Expand Down
2 changes: 1 addition & 1 deletion port_ocean/clients/port/mixins/entities.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

from port_ocean.clients.port.authentication import PortAuthentication
from port_ocean.clients.port.types import RequestOptions, UserAgentType
from port_ocean.clients.utils import handle_status_code
from port_ocean.clients.port.utils import handle_status_code
from port_ocean.core.models import Entity


Expand Down
2 changes: 1 addition & 1 deletion port_ocean/clients/port/mixins/integrations.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
from starlette import status

from port_ocean.clients.port.authentication import PortAuthentication
from port_ocean.clients.utils import handle_status_code
from port_ocean.clients.port.utils import handle_status_code

if TYPE_CHECKING:
from port_ocean.core.handlers.port_app_config.models import PortAppConfig
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "port-ocean"
version = "0.2.0.dev1"
version = "0.2.0.dev2"
description = "Port Ocean is a CLI tool for managing your Port projects."
readme = "README.md"
homepage = "https://app.getport.io"
Expand Down

0 comments on commit 2961825

Please sign in to comment.