Skip to content

Commit fb227af

Browse files
authored
Merge pull request #52 from Pipelex/release/v0.8.0
Release v0.8.0 — bump pipelex to 0.26.4
2 parents 6cdb7db + b7b331f commit fb227af

5 files changed

Lines changed: 359 additions & 28 deletions

File tree

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,3 +32,4 @@ pipelex_super.toml
3232
pipelex_override.toml
3333
telemetry_override.toml
3434
.pipelex/storage
35+
.pipelex/traces

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# Changelog
2+
3+
## [v0.8.0] - 2026-05-06
4+
5+
- Bump `pipelex` to `v0.26.4`: See `Pipelex` changelog [here](https://docs.pipelex.com/changelog/)
6+
- Add `pipelex-tools` dev dependency
7+
- Update `tests/integration/conftest.py` to use the new `needs_inference` kwarg on `Pipelex.make()` (replaces deprecated `disable_inference`)

pyproject.toml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "my-project"
3-
version = "0.7.0"
3+
version = "0.8.0"
44
description = "Replace this with your project description"
55
# authors = [{ name = "Your Name", email = "your.email@example.com" }]
66
license = "MIT"
@@ -17,7 +17,7 @@ classifiers = [
1717
]
1818

1919
dependencies = [
20-
"pipelex[mistralai,anthropic,google,google-genai,bedrock,fal]>=0.18.1"
20+
"pipelex[mistralai,anthropic,google,google-genai,bedrock,fal]>=0.26.4",
2121
]
2222

2323
[tool.setuptools]
@@ -28,6 +28,7 @@ include-package-data = true
2828
dev = [
2929
"boto3-stubs>=1.35.24",
3030
"mypy>=1.11.2",
31+
"pipelex-tools>=0.3.2",
3132
"pyright>=1.1.405",
3233
"pytest>=9.0.1",
3334
"pytest-sugar>=1.0.0",

tests/integration/conftest.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
import pipelex.pipelex
33
import pytest
44
from pipelex.system.configuration.config_check import check_is_initialized
5-
from pipelex.test_extras.shared_pytest_plugins import is_inference_disabled_in_pipelex
5+
from pipelex.test_extras.shared_pytest_plugins import needs_inference_in_pipelex
66
from pytest import FixtureRequest
77
from rich import print
88
from rich.console import Console
@@ -22,7 +22,7 @@ def reset_pipelex_config_fixture(request: FixtureRequest):
2222
print("\n[magenta]pipelex setup[/magenta]")
2323
try:
2424
pipelex_instance = pipelex.pipelex.Pipelex.make(
25-
disable_inference=is_inference_disabled_in_pipelex(request),
25+
needs_inference=needs_inference_in_pipelex(request),
2626
)
2727
except Exception as exc:
2828
Console().print(Traceback())

0 commit comments

Comments
 (0)