-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #10 from riza-io/release-please--branches--main--c…
…hanges--next release: 0.1.0-alpha.3
- Loading branch information
Showing
54 changed files
with
6,790 additions
and
216 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -38,6 +38,6 @@ jobs: | |
- name: Ensure importable | ||
run: | | ||
rye run python -c 'import riza' | ||
rye run python -c 'import rizaio' | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
{ | ||
".": "0.1.0-alpha.2" | ||
".": "0.1.0-alpha.3" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
# V1 | ||
# Code | ||
|
||
Types: | ||
|
||
```python | ||
from riza.types import V1ExecuteResponse | ||
from rizaio.types import CodeExecuteResponse | ||
``` | ||
|
||
Methods: | ||
|
||
- <code title="post /v1/execute">client.v1.<a href="./src/riza/resources/v1.py">execute</a>(\*\*<a href="src/riza/types/v1_execute_params.py">params</a>) -> <a href="./src/riza/types/v1_execute_response.py">V1ExecuteResponse</a></code> | ||
- <code title="post /v1/execute">client.code.<a href="./src/rizaio/resources/code.py">execute</a>(\*\*<a href="src/rizaio/types/code_execute_params.py">params</a>) -> <a href="./src/rizaio/types/code_execute_response.py">CodeExecuteResponse</a></code> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -61,6 +61,6 @@ | |
], | ||
"release-type": "python", | ||
"extra-files": [ | ||
"src/riza/_version.py" | ||
"src/rizaio/_version.py" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,83 @@ | ||
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. | ||
|
||
from . import types | ||
from ._types import NOT_GIVEN, NoneType, NotGiven, Transport, ProxiesTypes | ||
from ._utils import file_from_path | ||
from ._client import Riza, Client, Stream, Timeout, AsyncRiza, Transport, AsyncClient, AsyncStream, RequestOptions | ||
from ._models import BaseModel | ||
from ._version import __title__, __version__ | ||
from ._response import APIResponse as APIResponse, AsyncAPIResponse as AsyncAPIResponse | ||
from ._constants import DEFAULT_TIMEOUT, DEFAULT_MAX_RETRIES, DEFAULT_CONNECTION_LIMITS | ||
from ._exceptions import ( | ||
APIError, | ||
RizaError, | ||
ConflictError, | ||
NotFoundError, | ||
APIStatusError, | ||
RateLimitError, | ||
APITimeoutError, | ||
BadRequestError, | ||
APIConnectionError, | ||
AuthenticationError, | ||
InternalServerError, | ||
PermissionDeniedError, | ||
UnprocessableEntityError, | ||
APIResponseValidationError, | ||
) | ||
from ._base_client import DefaultHttpxClient, DefaultAsyncHttpxClient | ||
from ._utils._logs import setup_logging as _setup_logging | ||
|
||
__all__ = [ | ||
"types", | ||
"__version__", | ||
"__title__", | ||
"NoneType", | ||
"Transport", | ||
"ProxiesTypes", | ||
"NotGiven", | ||
"NOT_GIVEN", | ||
"RizaError", | ||
"APIError", | ||
"APIStatusError", | ||
"APITimeoutError", | ||
"APIConnectionError", | ||
"APIResponseValidationError", | ||
"BadRequestError", | ||
"AuthenticationError", | ||
"PermissionDeniedError", | ||
"NotFoundError", | ||
"ConflictError", | ||
"UnprocessableEntityError", | ||
"RateLimitError", | ||
"InternalServerError", | ||
"Timeout", | ||
"RequestOptions", | ||
"Client", | ||
"AsyncClient", | ||
"Stream", | ||
"AsyncStream", | ||
"Riza", | ||
"AsyncRiza", | ||
"file_from_path", | ||
"BaseModel", | ||
"DEFAULT_TIMEOUT", | ||
"DEFAULT_MAX_RETRIES", | ||
"DEFAULT_CONNECTION_LIMITS", | ||
"DefaultHttpxClient", | ||
"DefaultAsyncHttpxClient", | ||
] | ||
|
||
_setup_logging() | ||
|
||
# Update the __module__ attribute for exported symbols so that | ||
# error messages point to this module instead of the module | ||
# it was originally defined in, e.g. | ||
# rizaio._exceptions.NotFoundError -> rizaio.NotFoundError | ||
__locals = locals() | ||
for __name in __all__: | ||
if not __name.startswith("__"): | ||
try: | ||
__locals[__name].__module__ = "rizaio" | ||
except (TypeError, AttributeError): | ||
# Some of our exported symbols are builtins which we can't set attributes for. | ||
pass |
Oops, something went wrong.