Skip to content

Commit

Permalink
Release v0.25.4 [skip ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
semantic-release-bot committed May 31, 2024
1 parent 48d0902 commit 61d9091
Show file tree
Hide file tree
Showing 47 changed files with 68 additions and 65 deletions.
31 changes: 16 additions & 15 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "qcs-api-client"
version = "0.25.3"
version = "0.25.4"
description = "A client library for accessing the Rigetti QCS API"
license = "Apache-2.0"
repository = "https://github.com/rigetti/qcs-api-client-python"
Expand All @@ -20,11 +20,11 @@ iso8601 = "^1.0.2"
pydantic = "^2.6.3"
python = ">=3.8,<4.0"
python-dateutil = "^2.8.1"
retrying = "^1.3.3"
rfc3339 = "^6.2"
toml = "^0.10.2"
PyJWT = "^2.4.0"
pydantic-settings = "^2.2.1"
tenacity = "^8.3.0"


[tool.poetry.dev-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion qcs_api_client/api/account/add_group_user.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
from typing import Any, Dict, Union, cast

import httpx
from retrying import retry
from tenacity import retry

from ...types import Response
from ...util.errors import QCSHTTPStatusError
Expand Down
2 changes: 1 addition & 1 deletion qcs_api_client/api/account/get_group_balance.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
from typing import Any, Dict, Union

import httpx
from retrying import retry
from tenacity import retry

from ...types import Response
from ...util.errors import QCSHTTPStatusError
Expand Down
2 changes: 1 addition & 1 deletion qcs_api_client/api/account/get_group_billing_customer.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
from typing import Any, Dict, Union

import httpx
from retrying import retry
from tenacity import retry

from ...types import Response
from ...util.errors import QCSHTTPStatusError
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
from typing import Any, Dict, Union

import httpx
from retrying import retry
from tenacity import retry

from ...types import Response
from ...util.errors import QCSHTTPStatusError
Expand Down
2 changes: 1 addition & 1 deletion qcs_api_client/api/account/get_user_balance.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
from typing import Any, Dict, Union

import httpx
from retrying import retry
from tenacity import retry

from ...types import Response
from ...util.errors import QCSHTTPStatusError
Expand Down
2 changes: 1 addition & 1 deletion qcs_api_client/api/account/get_user_billing_customer.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
from typing import Any, Dict, Union

import httpx
from retrying import retry
from tenacity import retry

from ...types import Response
from ...util.errors import QCSHTTPStatusError
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
from typing import Any, Dict, Union

import httpx
from retrying import retry
from tenacity import retry

from ...types import Response
from ...util.errors import QCSHTTPStatusError
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
from typing import Any, Dict, Union

import httpx
from retrying import retry
from tenacity import retry

from ...types import Response, UNSET
from ...util.errors import QCSHTTPStatusError
Expand Down
2 changes: 1 addition & 1 deletion qcs_api_client/api/account/list_group_billing_invoices.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
from typing import Any, Dict, Union

import httpx
from retrying import retry
from tenacity import retry

from ...types import Response, UNSET
from ...util.errors import QCSHTTPStatusError
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
from typing import Any, Dict, Union

import httpx
from retrying import retry
from tenacity import retry

from ...types import Response, UNSET
from ...util.errors import QCSHTTPStatusError
Expand Down
2 changes: 1 addition & 1 deletion qcs_api_client/api/account/list_group_users.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
from typing import Any, Dict, Union

import httpx
from retrying import retry
from tenacity import retry

from ...types import Response, UNSET
from ...util.errors import QCSHTTPStatusError
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
from typing import Any, Dict, Union

import httpx
from retrying import retry
from tenacity import retry

from ...types import Response, UNSET
from ...util.errors import QCSHTTPStatusError
Expand Down
2 changes: 1 addition & 1 deletion qcs_api_client/api/account/list_user_billing_invoices.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
from typing import Any, Dict, Union

import httpx
from retrying import retry
from tenacity import retry

from ...types import Response, UNSET
from ...util.errors import QCSHTTPStatusError
Expand Down
2 changes: 1 addition & 1 deletion qcs_api_client/api/account/list_user_groups.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
from typing import Any, Dict, Union

import httpx
from retrying import retry
from tenacity import retry

from ...types import Response, UNSET
from ...util.errors import QCSHTTPStatusError
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
from typing import Any, Dict, Union

import httpx
from retrying import retry
from tenacity import retry

from ...types import Response, UNSET
from ...util.errors import QCSHTTPStatusError
Expand Down
2 changes: 1 addition & 1 deletion qcs_api_client/api/account/remove_group_user.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
from typing import Any, Dict, Union, cast

import httpx
from retrying import retry
from tenacity import retry

from ...types import Response
from ...util.errors import QCSHTTPStatusError
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
from typing import Any, Dict, Union, cast

import httpx
from retrying import retry
from tenacity import retry

from ...types import Response
from ...util.errors import QCSHTTPStatusError
Expand Down
2 changes: 1 addition & 1 deletion qcs_api_client/api/authentication/auth_get_user.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
from typing import Any, Dict, Union

import httpx
from retrying import retry
from tenacity import retry

from ...types import Response
from ...util.errors import QCSHTTPStatusError
Expand Down
2 changes: 1 addition & 1 deletion qcs_api_client/api/authentication/auth_reset_password.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
from typing import Any, Dict, Union, cast

import httpx
from retrying import retry
from tenacity import retry

from ...types import Response
from ...util.errors import QCSHTTPStatusError
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
from typing import Any, Dict, Union, cast

import httpx
from retrying import retry
from tenacity import retry

from ...types import Response
from ...util.errors import QCSHTTPStatusError
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
from typing import Any, Dict, Union

import httpx
from retrying import retry
from tenacity import retry

from ...types import Response
from ...util.errors import QCSHTTPStatusError
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
from typing import Any, Dict, Union

import httpx
from retrying import retry
from tenacity import retry

from ...types import Response
from ...util.errors import QCSHTTPStatusError
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
from typing import Any, Dict

import httpx
from retrying import retry
from tenacity import retry

from ...types import Response
from ...util.errors import QCSHTTPStatusError
Expand Down
2 changes: 1 addition & 1 deletion qcs_api_client/api/default/get_health.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
from typing import Any, Dict

import httpx
from retrying import retry
from tenacity import retry

from ...types import Response
from ...util.errors import QCSHTTPStatusError
Expand Down
2 changes: 1 addition & 1 deletion qcs_api_client/api/default/health_check.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
from typing import Any, Dict, Union

import httpx
from retrying import retry
from tenacity import retry

from ...types import Response
from ...util.errors import QCSHTTPStatusError
Expand Down
2 changes: 1 addition & 1 deletion qcs_api_client/api/default/health_check_deprecated.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
from typing import Any, Dict, Union

import httpx
from retrying import retry
from tenacity import retry

from ...types import Response
from ...util.errors import QCSHTTPStatusError
Expand Down
2 changes: 1 addition & 1 deletion qcs_api_client/api/endpoints/create_endpoint.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
from typing import Any, Dict, Union

import httpx
from retrying import retry
from tenacity import retry

from ...types import Response
from ...util.errors import QCSHTTPStatusError
Expand Down
2 changes: 1 addition & 1 deletion qcs_api_client/api/endpoints/delete_endpoint.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
from typing import Any, Dict, Union, cast

import httpx
from retrying import retry
from tenacity import retry

from ...types import Response
from ...util.errors import QCSHTTPStatusError
Expand Down
2 changes: 1 addition & 1 deletion qcs_api_client/api/endpoints/get_default_endpoint.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
from typing import Any, Dict, Union

import httpx
from retrying import retry
from tenacity import retry

from ...types import Response
from ...util.errors import QCSHTTPStatusError
Expand Down
2 changes: 1 addition & 1 deletion qcs_api_client/api/endpoints/get_endpoint.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
from typing import Any, Dict, Union

import httpx
from retrying import retry
from tenacity import retry

from ...types import Response
from ...util.errors import QCSHTTPStatusError
Expand Down
2 changes: 1 addition & 1 deletion qcs_api_client/api/endpoints/list_endpoints.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
from typing import Any, Dict, Union

import httpx
from retrying import retry
from tenacity import retry

from ...types import Response, UNSET
from ...util.errors import QCSHTTPStatusError
Expand Down
2 changes: 1 addition & 1 deletion qcs_api_client/api/endpoints/restart_endpoint.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
from typing import Any, Dict, Union, cast

import httpx
from retrying import retry
from tenacity import retry

from ...types import Response
from ...util.errors import QCSHTTPStatusError
Expand Down
2 changes: 1 addition & 1 deletion qcs_api_client/api/engagements/create_engagement.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
from typing import Any, Dict, Union

import httpx
from retrying import retry
from tenacity import retry

from ...types import Response, UNSET
from ...util.errors import QCSHTTPStatusError
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
from typing import Any, Dict, Union

import httpx
from retrying import retry
from tenacity import retry

from ...types import Response
from ...util.errors import QCSHTTPStatusError
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
from typing import Any, Dict, Union

import httpx
from retrying import retry
from tenacity import retry

from ...types import Response
from ...util.errors import QCSHTTPStatusError
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
from typing import Any, Dict, Union

import httpx
from retrying import retry
from tenacity import retry

from ...types import Response, UNSET
from ...util.errors import QCSHTTPStatusError
Expand Down
Loading

0 comments on commit 61d9091

Please sign in to comment.