Skip to content

Commit 2c15a02

Browse files
authored
Merge pull request #260 from Pipelex/release/v0.9.3
- Better support for BlackboxAI IDE - VS Code extensions recommendations file with Pipelex, Ruff, and MyPy extensions - File association for .plx files in VS Code settings
2 parents f144d87 + 91b5583 commit 2c15a02

5 files changed

Lines changed: 21 additions & 2 deletions

File tree

.vscode/extensions.json

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"recommendations": [
3+
"Pipelex.pipelex",
4+
"charliermarsh.ruff",
5+
"matangover.mypy"
6+
]
7+
}

.vscode/settings.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,5 +20,8 @@
2020
],
2121
"python.testing.unittestEnabled": false,
2222
"python.testing.pytestEnabled": true,
23-
"djlint.showInstallError": false
23+
"djlint.showInstallError": false,
24+
"files.associations": {
25+
"*.plx": "plx"
26+
}
2427
}

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# Changelog
22

3+
## [v0.9.3] - 2025-09-06
4+
5+
### Added
6+
7+
- Better support for BlackboxAI IDE
8+
- VS Code extensions recommendations file with Pipelex, Ruff, and MyPy extensions
9+
- File association for .plx files in VS Code settings
10+
311
## [v0.9.2] - 2025-09-05
412

513
### Fixed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "pipelex"
3-
version = "0.9.2"
3+
version = "0.9.3"
44
description = "Pipelex is an open-source dev tool based on a simple declarative language that lets you define replicable, structured, composable LLM pipelines."
55
authors = [{ name = "Evotis S.A.S.", email = "evotis@pipelex.com" }]
66
maintainers = [{ name = "Pipelex staff", email = "oss@pipelex.com" }]

tests/integration/pipelex/plugins/test_anthropic.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
from pipelex.plugins.anthropic.anthropic_llms import anthropic_list_anthropic_models
99

1010

11+
# TODO: fix this: test works for Anthropic but not if you set peferred platform for Anthropic is Bedrock
1112
# make t VERBOSE=2 TEST=TestAnthropic
1213
@pytest.mark.gha_disabled
1314
@pytest.mark.codex_disabled

0 commit comments

Comments
 (0)