Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .github/workflows/sdk_generation_mistralai_azure_sdk.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,9 @@ jobs:
with:
force: ${{ github.event.inputs.force }}
mode: pr
# We need poetry < 2.0 to avoid the speakeasy run failure.
# This was fixed in speakasy v1.467.0 but we're locked at 1.462.2 waiting for other speakeasy fixes.
poetry_version: 1.8.5
set_version: ${{ github.event.inputs.set_version }}
speakeasy_version: latest
target: mistral-python-sdk-azure
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/sdk_generation_mistralai_gcp_sdk.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,9 @@ jobs:
with:
force: ${{ github.event.inputs.force }}
mode: pr
# We need poetry < 2.0 to avoid the speakeasy run failure.
# This was fixed in speakasy v1.467.0 but we're locked at 1.462.2 waiting for other speakeasy fixes.
poetry_version: 1.8.5
set_version: ${{ github.event.inputs.set_version }}
speakeasy_version: latest
target: mistral-python-sdk-google-cloud
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/sdk_generation_mistralai_sdk.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,9 @@ jobs:
with:
force: ${{ github.event.inputs.force }}
mode: pr
# We need poetry < 2.0 to avoid the speakeasy run failure.
# This was fixed in speakasy v1.467.0 but we're locked at 1.462.2 waiting for other speakeasy fixes.
poetry_version: 1.8.5
set_version: ${{ github.event.inputs.set_version }}
speakeasy_version: latest
target: mistralai-sdk
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/sdk_publish_mistralai_sdk.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,10 @@ permissions:
jobs:
publish:
uses: speakeasy-api/sdk-generation-action/.github/workflows/sdk-publish.yaml@v15
with:
# We need poetry < 2.0 to avoid the speakeasy run failure.
# This was fixed in speakasy v1.467.0 but we're locked at 1.462.2 waiting for other speakeasy fixes.
poetry_version: 1.8.5
secrets:
github_access_token: ${{ secrets.GITHUB_TOKEN }}
pypi_token: ${{ secrets.PYPI_TOKEN }}
Expand Down
5 changes: 4 additions & 1 deletion .speakeasy/workflow.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
workflowVersion: 1.0.0
speakeasyVersion: 1.462.2 # # Pinned to unblock https://github.com/mistralai/client-python/pull/173
# speakeasyVersion is pinned to unblock https://github.com/mistralai/client-python/pull/173
# The speakeasy run was appending `_` to some attributes to avoid conflicts with reserved keywords.
# This would have change the SDK APIs and break the existing clients which we don't want.
speakeasyVersion: 1.462.2
sources:
mistral-azure-source:
inputs:
Expand Down
Loading