File tree Expand file tree Collapse file tree 2 files changed +8
-1
lines changed Expand file tree Collapse file tree 2 files changed +8
-1
lines changed Original file line number Diff line number Diff line change 66
66
INDEX_NAME : ${{ matrix.INDEX_NAME }}
67
67
run : hatch run cov-retry
68
68
69
+ - name : Run unit tests with lowest direct dependencies
70
+ run : |
71
+ hatch run uv pip compile pyproject.toml --resolution lowest-direct --output-file requirements_lowest_direct.txt
72
+ hatch run uv pip install -r requirements_lowest_direct.txt
73
+ hatch run test -m "not integration"
74
+
69
75
- name : Nightly - run unit tests with Haystack main branch
70
76
if : github.event_name == 'schedule'
71
77
run : |
78
+ hatch env prune
72
79
hatch run uv pip install git+https://github.com/deepset-ai/haystack.git@main
73
80
hatch run cov-retry -m "not integration"
74
81
Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ classifiers = [
25
25
]
26
26
dependencies = [
27
27
" haystack-ai>=2.11.0" ,
28
- " pinecone[asyncio]>=3 " , # our implementation is not compatible with pinecone <3 ,
28
+ " pinecone[asyncio]>=6.0.0 " , # asyncio extra was added in 6.0.0 ,
29
29
]
30
30
31
31
[project .urls ]
You can’t perform that action at this time.
0 commit comments