Skip to content

Commit 51d3416

Browse files
author
Mikhail Koviazin
committed
github: pin minimum libvalkey version for now
`pip install <pkg>` fails if the only available package version is a beta. `libvalkey 3.0.0` is not suitable for the test and was yanked, `libvalkey 4.0.0b1` is the most recent version. To use it, we need to specify it explicitly. Provide it as a minimum version. Signed-off-by: Mikhail Koviazin <[email protected]>
1 parent 414963f commit 51d3416

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/integration.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ jobs:
7575
pip install -r requirements.txt
7676
pip install -r dev_requirements.txt
7777
if [ "${{matrix.connection-type}}" == "libvalkey" ]; then
78-
pip install libvalkey
78+
pip install "libvalkey>=4.0.0b1"
7979
fi
8080
invoke devenv
8181
sleep 10 # time to settle
@@ -123,7 +123,7 @@ jobs:
123123
pip install -r requirements.txt
124124
pip install -r dev_requirements.txt
125125
if [ "${{matrix.connection-type}}" == "libvalkey" ]; then
126-
pip install libvalkey
126+
pip install "libvalkey>=4.0.0b1"
127127
fi
128128
invoke devenv
129129
sleep 10 # time to settle

0 commit comments

Comments
 (0)