Skip to content

Commit 944afab

Browse files
committed
update pull from 0.5.0
1 parent f4dad65 commit 944afab

File tree

2 files changed

+16
-20
lines changed

2 files changed

+16
-20
lines changed

python-recipes/semantic-cache/02_semantic_cache_optimization.ipynb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@
2626
"metadata": {},
2727
"outputs": [],
2828
"source": [
29-
"# install redisvl from branch since scheduled for 0.5.0\n",
30-
"%pip install git+https://github.com/redis/redis-vl-python.git@feat/RAAE-602/threshold-optimizer"
29+
"# install from branch since scheduled for 0.5.0\n",
30+
"%pip install git+https://github.com/redis/redis-vl-python.git@0.5.0"
3131
]
3232
},
3333
{

python-recipes/semantic-router/01_routing_optimization.ipynb

Lines changed: 14 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -48,31 +48,29 @@
4848
},
4949
{
5050
"cell_type": "code",
51-
"execution_count": null,
51+
"execution_count": 2,
5252
"id": "717284f0",
5353
"metadata": {},
5454
"outputs": [
5555
{
5656
"name": "stdout",
5757
"output_type": "stream",
5858
"text": [
59-
"Collecting git+https://github.com/redis/redis-vl-python.git@feat/RAAE-602/threshold-optimizer\n",
60-
" Cloning https://github.com/redis/redis-vl-python.git (to revision feat/RAAE-602/threshold-optimizer) to /private/var/folders/_g/rr4lnxxx1_z7m78lz89dhvsm0000gp/T/pip-req-build-ykzynneq\n",
61-
" Running command git clone --filter=blob:none --quiet https://github.com/redis/redis-vl-python.git /private/var/folders/_g/rr4lnxxx1_z7m78lz89dhvsm0000gp/T/pip-req-build-ykzynneq\n",
62-
" Running command git checkout -b feat/RAAE-602/threshold-optimizer --track origin/feat/RAAE-602/threshold-optimizer\n",
63-
" Switched to a new branch 'feat/RAAE-602/threshold-optimizer'\n",
64-
" branch 'feat/RAAE-602/threshold-optimizer' set up to track 'origin/feat/RAAE-602/threshold-optimizer'.\n",
65-
" Resolved https://github.com/redis/redis-vl-python.git to commit 18ff1008c5a40353c97c176d3d30028a87ff777a\n",
59+
"Collecting git+https://github.com/redis/redis-vl-python.git@0.5.0\n",
60+
" Cloning https://github.com/redis/redis-vl-python.git (to revision 0.5.0) to /private/var/folders/_g/rr4lnxxx1_z7m78lz89dhvsm0000gp/T/pip-req-build-54zjmrpr\n",
61+
" Running command git clone --filter=blob:none --quiet https://github.com/redis/redis-vl-python.git /private/var/folders/_g/rr4lnxxx1_z7m78lz89dhvsm0000gp/T/pip-req-build-54zjmrpr\n",
62+
" Running command git checkout -b 0.5.0 --track origin/0.5.0\n",
63+
" Switched to a new branch '0.5.0'\n",
64+
" branch '0.5.0' set up to track 'origin/0.5.0'.\n",
65+
" Resolved https://github.com/redis/redis-vl-python.git to commit 3ca4c97baa9640d24feedd3bb3791cf95859367d\n",
6666
" Installing build dependencies ... \u001b[?25ldone\n",
6767
"\u001b[?25h Getting requirements to build wheel ... \u001b[?25ldone\n",
6868
"\u001b[?25h Preparing metadata (pyproject.toml) ... \u001b[?25ldone\n",
6969
"\u001b[?25hRequirement already satisfied: coloredlogs<16.0,>=15.0 in /Users/robert.shelton/.pyenv/versions/3.11.8/lib/python3.11/site-packages (from redisvl==0.4.1) (15.0.1)\n",
70-
"Collecting ml-dtypes<0.5.0,>=0.4.0 (from redisvl==0.4.1)\n",
71-
" Using cached ml_dtypes-0.4.1-cp311-cp311-macosx_10_9_universal2.whl.metadata (20 kB)\n",
70+
"Requirement already satisfied: ml-dtypes<0.5.0,>=0.4.0 in /Users/robert.shelton/.pyenv/versions/3.11.8/lib/python3.11/site-packages (from redisvl==0.4.1) (0.4.1)\n",
7271
"Requirement already satisfied: numpy<2,>=1 in /Users/robert.shelton/.pyenv/versions/3.11.8/lib/python3.11/site-packages (from redisvl==0.4.1) (1.26.4)\n",
7372
"Requirement already satisfied: pydantic<3,>=2 in /Users/robert.shelton/.pyenv/versions/3.11.8/lib/python3.11/site-packages (from redisvl==0.4.1) (2.7.4)\n",
74-
"Collecting python-ulid<4.0.0,>=3.0.0 (from redisvl==0.4.1)\n",
75-
" Using cached python_ulid-3.0.0-py3-none-any.whl.metadata (5.8 kB)\n",
73+
"Requirement already satisfied: python-ulid<4.0.0,>=3.0.0 in /Users/robert.shelton/.pyenv/versions/3.11.8/lib/python3.11/site-packages (from redisvl==0.4.1) (3.0.0)\n",
7674
"Requirement already satisfied: pyyaml<7.0,>=5.4 in /Users/robert.shelton/.pyenv/versions/3.11.8/lib/python3.11/site-packages (from redisvl==0.4.1) (6.0.1)\n",
7775
"Requirement already satisfied: redis<6.0,>=5.0 in /Users/robert.shelton/.pyenv/versions/3.11.8/lib/python3.11/site-packages (from redisvl==0.4.1) (5.0.5)\n",
7876
"Requirement already satisfied: tabulate<0.10.0,>=0.9.0 in /Users/robert.shelton/.pyenv/versions/3.11.8/lib/python3.11/site-packages (from redisvl==0.4.1) (0.9.0)\n",
@@ -81,15 +79,13 @@
8179
"Requirement already satisfied: annotated-types>=0.4.0 in /Users/robert.shelton/.pyenv/versions/3.11.8/lib/python3.11/site-packages (from pydantic<3,>=2->redisvl==0.4.1) (0.7.0)\n",
8280
"Requirement already satisfied: pydantic-core==2.18.4 in /Users/robert.shelton/.pyenv/versions/3.11.8/lib/python3.11/site-packages (from pydantic<3,>=2->redisvl==0.4.1) (2.18.4)\n",
8381
"Requirement already satisfied: typing-extensions>=4.6.1 in /Users/robert.shelton/.pyenv/versions/3.11.8/lib/python3.11/site-packages (from pydantic<3,>=2->redisvl==0.4.1) (4.12.2)\n",
84-
"Using cached ml_dtypes-0.4.1-cp311-cp311-macosx_10_9_universal2.whl (397 kB)\n",
85-
"Using cached python_ulid-3.0.0-py3-none-any.whl (11 kB)\n",
8682
"Building wheels for collected packages: redisvl\n",
8783
" Building wheel for redisvl (pyproject.toml) ... \u001b[?25ldone\n",
8884
"\u001b[?25h Created wheel for redisvl: filename=redisvl-0.4.1-py3-none-any.whl size=113401 sha256=973e3b34a10bf10547873947798f4c37f681a87bd1f53c7cf938f2b4bccd71a6\n",
89-
" Stored in directory: /private/var/folders/_g/rr4lnxxx1_z7m78lz89dhvsm0000gp/T/pip-ephem-wheel-cache-ydmee1o_/wheels/7d/a2/98/dc1851263ac9752b79c06e42f079d0f4d7233faf3a0fba86f1\n",
85+
" Stored in directory: /private/var/folders/_g/rr4lnxxx1_z7m78lz89dhvsm0000gp/T/pip-ephem-wheel-cache-wt36bttp/wheels/95/dc/1e/d8dc251e38989044675dae0b596a2dee10cbfdecac5c62ccdf\n",
9086
"Successfully built redisvl\n",
91-
"Installing collected packages: python-ulid, ml-dtypes, redisvl\n",
92-
"Successfully installed ml-dtypes-0.4.1 python-ulid-3.0.0 redisvl-0.4.1\n",
87+
"Installing collected packages: redisvl\n",
88+
"Successfully installed redisvl-0.4.1\n",
9389
"\n",
9490
"\u001b[1m[\u001b[0m\u001b[34;49mnotice\u001b[0m\u001b[1;39;49m]\u001b[0m\u001b[39;49m A new release of pip is available: \u001b[0m\u001b[31;49m24.0\u001b[0m\u001b[39;49m -> \u001b[0m\u001b[32;49m25.0.1\u001b[0m\n",
9591
"\u001b[1m[\u001b[0m\u001b[34;49mnotice\u001b[0m\u001b[1;39;49m]\u001b[0m\u001b[39;49m To update, run: \u001b[0m\u001b[32;49mpip install --upgrade pip\u001b[0m\n",
@@ -99,7 +95,7 @@
9995
],
10096
"source": [
10197
"# install from branch since scheduled for 0.5.0\n",
102-
"%pip install git+https://github.com/redis/redis-vl-python.git@feat/RAAE-602/threshold-optimizer"
98+
"%pip install git+https://github.com/redis/redis-vl-python.git@0.5.0"
10399
]
104100
},
105101
{

0 commit comments

Comments
 (0)