Skip to content

Commit e182fe9

Browse files
authored
Merge pull request #570 from aurelio-labs/james/dep-issue
fix: dep issue
2 parents b50c7d6 + e7e107c commit e182fe9

19 files changed

+37
-22
lines changed

.github/workflows/test.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,11 @@ jobs:
4444
enable-cache: true
4545
cache-dependency-glob: "uv.lock"
4646
python-version: ${{ matrix.python-version }}
47-
- name: Install Dependencies
47+
- name: Install Dependencies (Essential Only)
48+
run: uv sync
49+
- name: Confirm Library Imports
50+
run: uv run python -c "import semantic_router"
51+
- name: Install Dependencies (All)
4852
run: uv sync --extra all
4953
- name: Install nltk
5054
run: uv pip install nltk

docs/00-introduction.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@
5353
},
5454
"outputs": [],
5555
"source": [
56-
"!pip install -qU \"semantic-router>=0.1.4\""
56+
"!pip install -qU \"semantic-router>=0.1.5\""
5757
]
5858
},
5959
{

docs/01-save-load-from-file.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
},
4747
"outputs": [],
4848
"source": [
49-
"!pip install -qU \"semantic-router>=0.1.4\""
49+
"!pip install -qU \"semantic-router>=0.1.5\""
5050
]
5151
},
5252
{

docs/02-dynamic-routes.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@
9595
],
9696
"source": [
9797
"!pip install tzdata\n",
98-
"!pip install -qU \"semantic-router>=0.1.4\""
98+
"!pip install -qU \"semantic-router>=0.1.5\""
9999
]
100100
},
101101
{

docs/03-basic-langchain-agent.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@
5252
"outputs": [],
5353
"source": [
5454
"!pip install -qU \\\n",
55-
" \"semantic-router>=0.1.4\" \\\n",
55+
" \"semantic-router>=0.1.5\" \\\n",
5656
" langchain==0.0.352 \\\n",
5757
" openai>=1.6.1"
5858
]

docs/06-threshold-optimization.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
},
3838
"outputs": [],
3939
"source": [
40-
"!pip install -qU \"semantic-router>=0.1.4\""
40+
"!pip install -qU \"semantic-router>=0.1.5\""
4141
]
4242
},
4343
{

docs/08-async-dynamic-routes.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@
7878
"outputs": [],
7979
"source": [
8080
"!pip install -qU \\\n",
81-
" \"semantic-router>=0.1.4\" \\\n",
81+
" \"semantic-router>=0.1.5\" \\\n",
8282
" tzdata"
8383
]
8484
},

docs/09-route-filter.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@
5353
},
5454
"outputs": [],
5555
"source": [
56-
"!pip install -qU \"semantic-router>=0.1.4\""
56+
"!pip install -qU \"semantic-router>=0.1.5\""
5757
]
5858
},
5959
{

docs/indexes/local.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"metadata": {},
1414
"outputs": [],
1515
"source": [
16-
"!pip install -qU \"semantic-router>=0.1.4\""
16+
"!pip install -qU \"semantic-router>=0.1.5\""
1717
]
1818
},
1919
{

docs/indexes/pinecone-local.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@
5050
"metadata": {},
5151
"outputs": [],
5252
"source": [
53-
"!pip install -qU \"semantic-router[pinecone]>=0.1.4\""
53+
"!pip install -qU \"semantic-router[pinecone]>=0.1.5\""
5454
]
5555
},
5656
{

0 commit comments

Comments
 (0)