Skip to content
Closed
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
8 changes: 7 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,13 @@ jobs:
python-version: '3.11'

- name: Install package
run: pip install -e . 2>/dev/null || pip install -e .[training]
# Smoke import only exercises the base package (`import fireworks`),
# so install without extras. The previous `pip install -e . 2>/dev/null
# || pip install -e .[training]` chain swallowed real install errors
# and silently chose between two install modes -- exactly the
# silent-fallback pattern the rest of this hotfix tightens. Pinned to
# plain install for predictable, fast CI.
run: pip install -e .

- name: Smoke import
run: python -c "import fireworks; print('fireworks', getattr(fireworks, '__version__', '<unknown>'))"
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# Changelog

## 1.2.0-alpha.73 (2026-05-22)

Full Changelog: [v1.2.0-alpha.72...v1.2.0-alpha.73](https://github.com/fw-ai-external/python-sdk/compare/v1.2.0-alpha.72...v1.2.0-alpha.73)

### Bug Fixes
* **public-sdk:** restore embedding client wiped by 1.2.0-alpha.72 release (#26423) ([7ac0ed8](https://github.com/fw-ai-external/python-sdk/commit/7ac0ed8d35854733f31cc607d7a798f0bdc5c62d))

### Chores
* autorelease single source of truth (#90) ([fc3f8c7](https://github.com/fw-ai-external/python-sdk/commit/fc3f8c72d7a72f40d95d32658488bea44e443d18))
* stage SDK deployment annotations (#26077) ([8eb9f95](https://github.com/fw-ai-external/python-sdk/commit/8eb9f95014dd449f038d6e78fad9df4ca02bed34))
* clean up staged public repo references (#26200) ([8037b48](https://github.com/fw-ai-external/python-sdk/commit/8037b48f7242072256841345eef9ec14142ed189))
* unblock public SDK promotion flow (#26242) ([79a1c79](https://github.com/fw-ai-external/python-sdk/commit/79a1c79157d74e0443666344ef872bf5609cfd4c))
* catch up cookbook + SDK from public main; delete dead Stainless CI; autorelease SST + guards (#26426) ([9d62fe4](https://github.com/fw-ai-external/python-sdk/commit/9d62fe4c45fa91d3780093bb15524ec26600408c))

## 1.2.0-alpha.72 (2026-05-21)

Full Changelog: [v1.2.0-alpha.71...v1.2.0-alpha.72](https://github.com/fw-ai-external/python-sdk/compare/v1.2.0-alpha.71...v1.2.0-alpha.72)
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "fireworks-ai"
version = "1.2.0-alpha.72"
version = "1.2.0-alpha.73"
description = "The official Python library for the fireworks API"
dynamic = ["readme"]
license = "Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion src/fireworks/_version.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.

__title__ = "fireworks"
__version__ = "1.2.0-alpha.72" # x-release-please-version
__version__ = "1.2.0-alpha.73" # x-release-please-version
Loading
Loading