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
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -32,3 +32,4 @@ pipelex_super.toml
pipelex_override.toml
telemetry_override.toml
.pipelex/storage
.pipelex/traces
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# Changelog

## [v0.8.0] - 2026-05-06

- Bump `pipelex` to `v0.26.4`: See `Pipelex` changelog [here](https://docs.pipelex.com/changelog/)
- Add `pipelex-tools` dev dependency
- Update `tests/integration/conftest.py` to use the new `needs_inference` kwarg on `Pipelex.make()` (replaces deprecated `disable_inference`)
5 changes: 3 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "my-project"
version = "0.7.0"
version = "0.8.0"
description = "Replace this with your project description"
# authors = [{ name = "Your Name", email = "your.email@example.com" }]
license = "MIT"
Expand All @@ -17,7 +17,7 @@ classifiers = [
]

dependencies = [
"pipelex[mistralai,anthropic,google,google-genai,bedrock,fal]>=0.18.1"
"pipelex[mistralai,anthropic,google,google-genai,bedrock,fal]>=0.26.4",
]

[tool.setuptools]
Expand All @@ -28,6 +28,7 @@ include-package-data = true
dev = [
"boto3-stubs>=1.35.24",
"mypy>=1.11.2",
"pipelex-tools>=0.3.2",
"pyright>=1.1.405",
"pytest>=9.0.1",
"pytest-sugar>=1.0.0",
Expand Down
4 changes: 2 additions & 2 deletions tests/integration/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import pipelex.pipelex
import pytest
from pipelex.system.configuration.config_check import check_is_initialized
from pipelex.test_extras.shared_pytest_plugins import is_inference_disabled_in_pipelex
from pipelex.test_extras.shared_pytest_plugins import needs_inference_in_pipelex
from pytest import FixtureRequest
from rich import print
from rich.console import Console
Expand All @@ -22,7 +22,7 @@ def reset_pipelex_config_fixture(request: FixtureRequest):
print("\n[magenta]pipelex setup[/magenta]")
try:
pipelex_instance = pipelex.pipelex.Pipelex.make(
disable_inference=is_inference_disabled_in_pipelex(request),
needs_inference=needs_inference_in_pipelex(request),
)
except Exception as exc:
Console().print(Traceback())
Expand Down
Loading
Loading