Skip to content

Commit 06d71f3

Browse files
committed
.
1 parent eabedcf commit 06d71f3

File tree

2 files changed

+36
-3
lines changed

2 files changed

+36
-3
lines changed

.github/workflows/test-integrations-ai.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,10 +58,14 @@ jobs:
5858
run: |
5959
set -x # print commands that are executed
6060
./scripts/runtox.sh --exclude-latest "py${{ matrix.python-version }}-cohere"
61-
- name: Test langchain pinned
61+
- name: Test langchain-base pinned
6262
run: |
6363
set -x # print commands that are executed
64-
./scripts/runtox.sh --exclude-latest "py${{ matrix.python-version }}-langchain"
64+
./scripts/runtox.sh --exclude-latest "py${{ matrix.python-version }}-langchain-base"
65+
- name: Test langchain-notiktoken pinned
66+
run: |
67+
set -x # print commands that are executed
68+
./scripts/runtox.sh --exclude-latest "py${{ matrix.python-version }}-langchain-notiktoken"
6569
- name: Test openai-base pinned
6670
run: |
6771
set -x # print commands that are executed

tox.ini

Lines changed: 30 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
# The file (and all resulting CI YAMLs) then need to be regenerated via
1111
# "scripts/generate-test-files.sh".
1212
#
13-
# Last generated: 2025-09-02T09:02:57.313336+00:00
13+
# Last generated: 2025-09-02T09:41:41.807707+00:00
1414

1515
[tox]
1616
requires =
@@ -132,6 +132,18 @@ envlist =
132132
{py3.9,py3.11,py3.12}-cohere-v5.13.12
133133
{py3.9,py3.11,py3.12}-cohere-v5.17.0
134134

135+
{py3.9,py3.10,py3.11}-langchain-base-v0.0.354
136+
{py3.9,py3.11,py3.12}-langchain-base-v0.1.20
137+
{py3.9,py3.11,py3.12}-langchain-base-v0.2.17
138+
{py3.9,py3.12,py3.13}-langchain-base-v0.3.27
139+
{py3.10,py3.12,py3.13}-langchain-base-v1.0.0a2
140+
141+
{py3.9,py3.10,py3.11}-langchain-notiktoken-v0.0.354
142+
{py3.9,py3.11,py3.12}-langchain-notiktoken-v0.1.20
143+
{py3.9,py3.11,py3.12}-langchain-notiktoken-v0.2.17
144+
{py3.9,py3.12,py3.13}-langchain-notiktoken-v0.3.27
145+
{py3.10,py3.12,py3.13}-langchain-notiktoken-v1.0.0a2
146+
135147
{py3.8,py3.11,py3.12}-openai-base-v1.0.1
136148
{py3.8,py3.11,py3.12}-openai-base-v1.35.15
137149
{py3.8,py3.11,py3.12}-openai-base-v1.69.0
@@ -496,6 +508,23 @@ deps =
496508
cohere-v5.13.12: cohere==5.13.12
497509
cohere-v5.17.0: cohere==5.17.0
498510

511+
langchain-base-v0.0.354: langchain==0.0.354
512+
langchain-base-v0.1.20: langchain==0.1.20
513+
langchain-base-v0.2.17: langchain==0.2.17
514+
langchain-base-v0.3.27: langchain==0.3.27
515+
langchain-base-v1.0.0a2: langchain==1.0.0a2
516+
langchain-base: openai
517+
langchain-base: tiktoken
518+
langchain-base-v0.0.354: httpx<0.28.0
519+
520+
langchain-notiktoken-v0.0.354: langchain==0.0.354
521+
langchain-notiktoken-v0.1.20: langchain==0.1.20
522+
langchain-notiktoken-v0.2.17: langchain==0.2.17
523+
langchain-notiktoken-v0.3.27: langchain==0.3.27
524+
langchain-notiktoken-v1.0.0a2: langchain==1.0.0a2
525+
langchain-notiktoken: openai
526+
langchain-notiktoken-v0.0.354: httpx<0.28.0
527+
499528
openai-base-v1.0.1: openai==1.0.1
500529
openai-base-v1.35.15: openai==1.35.15
501530
openai-base-v1.69.0: openai==1.69.0

0 commit comments

Comments
 (0)