Skip to content

Commit

Permalink
Update 2024-11-08 (#23)
Browse files Browse the repository at this point in the history
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
  • Loading branch information
friendli-bot and github-actions[bot] authored Nov 8, 2024
1 parent 5d7e1c7 commit 7ca6141
Show file tree
Hide file tree
Showing 8 changed files with 25 additions and 11 deletions.
5 changes: 3 additions & 2 deletions .speakeasy/gen.lock
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,11 @@ management:
docVersion: v1
speakeasyVersion: 1.434.7
generationVersion: 2.452.0
releaseVersion: 0.2.16
configChecksum: 3cd4816adc585991a677ac8e3dea19fb
releaseVersion: 0.2.17
configChecksum: 09e153662c09d8e316bb7b2b52ddcf76
repoURL: https://github.com/friendliai/friendli-python-internal.git
installationURL: https://github.com/friendliai/friendli-python-internal.git
published: true
features:
python:
acceptHeaders: 3.0.0
Expand Down
2 changes: 1 addition & 1 deletion .speakeasy/gen.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ generation:
oAuth2ClientCredentialsEnabled: true
oAuth2PasswordEnabled: true
python:
version: 0.2.16
version: 0.2.17
additionalDependencies:
dev: {}
main: {}
Expand Down
5 changes: 4 additions & 1 deletion .speakeasy/workflow.lock
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ targets:
sourceRevisionDigest: sha256:7fd16a253ac1ccc39655cde2c6dc9e4e41cecc38467e315fe129e0752bac50da
sourceBlobDigest: sha256:aa5f6a4a4ad0ad60d8ecfa3ba1f3cf815b6807b9d48c44c308eb4d1aa7916c92
codeSamplesNamespace: friendli-api-schema-code-samples
codeSamplesRevisionDigest: sha256:255d017509edbda3d29e730872b02300166e11b5b8d15f2bd9e47270d617d329
codeSamplesRevisionDigest: sha256:7eca9fd534eeca6860cf581fe9b411ac94f228c84963883175ad24918fbd40d6
workflow:
workflowVersion: 1.0.0
speakeasyVersion: latest
Expand All @@ -28,6 +28,9 @@ workflow:
friendli:
target: python
source: Friendli-API-Schema
publish:
pypi:
token: $pypi_token
codeSamples:
registry:
location: registry.speakeasyapi.dev/friendliai/friendliai/friendli-api-schema-code-samples
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,15 +45,15 @@ The SDK can be installed with either *pip* or *poetry* package managers.
*PIP* is the default package installer for Python, enabling easy installation and management of packages from PyPI via the command line.

```bash
pip install git+https://github.com/friendliai/friendli-python-internal.git
pip install friendli
```

### Poetry

*Poetry* is a modern tool that simplifies dependency management and package publishing by using a single `pyproject.toml` file to handle project metadata and dependencies.

```bash
poetry add git+https://github.com/friendliai/friendli-python-internal.git
poetry add friendli
```
<!-- End SDK Installation [installation] -->

Expand Down
12 changes: 11 additions & 1 deletion RELEASES.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,14 @@ Based on:
- OpenAPI Doc
- Speakeasy CLI 1.434.7 (2.452.0) https://github.com/speakeasy-api/speakeasy
### Generated
- [python v0.2.16] .
- [python v0.2.16] .

## 2024-11-08 06:22:12
### Changes
Based on:
- OpenAPI Doc
- Speakeasy CLI 1.434.7 (2.452.0) https://github.com/speakeasy-api/speakeasy
### Generated
- [python v0.2.17] .
### Releases
- [PyPI v0.2.17] https://pypi.org/project/friendli/0.2.17 - .
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 = "friendli"
version = "0.2.16"
version = "0.2.17"
description = "Python Client SDK Generated by Speakeasy."
authors = ["Speakeasy",]
readme = "README-PYPI.md"
Expand Down
2 changes: 1 addition & 1 deletion src/friendli/_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import importlib.metadata

__title__: str = "friendli"
__version__: str = "0.2.16"
__version__: str = "0.2.17"

try:
if __package__ is not None:
Expand Down
4 changes: 2 additions & 2 deletions src/friendli/sdkconfiguration.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,9 @@ class SDKConfiguration:
server: Optional[str] = ""
language: str = "python"
openapi_doc_version: str = "v1"
sdk_version: str = "0.2.16"
sdk_version: str = "0.2.17"
gen_version: str = "2.452.0"
user_agent: str = "speakeasy-sdk/python 0.2.16 2.452.0 v1 friendli"
user_agent: str = "speakeasy-sdk/python 0.2.17 2.452.0 v1 friendli"
retry_config: OptionalNullable[RetryConfig] = Field(default_factory=lambda: UNSET)
timeout_ms: Optional[int] = None

Expand Down

0 comments on commit 7ca6141

Please sign in to comment.