File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 6060 - name : Run tests
6161 run : hatch run cov-retry
6262
63+ - name : Run unit tests with lowest direct dependencies
64+ run : |
65+ hatch run uv pip compile pyproject.toml --resolution lowest-direct --output-file requirements_lowest_direct.txt
66+ hatch run uv pip install -r requirements_lowest_direct.txt
67+ hatch run test -m "not integration"
68+
6369 - name : Nightly - run unit tests with Haystack main branch
6470 if : github.event_name == 'schedule'
6571 run : |
72+ hatch env prune
6673 hatch run uv pip install git+https://github.com/deepset-ai/haystack.git@main
6774 hatch run cov-retry -m "not integration"
6875
Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ classifiers = [
2525 " Programming Language :: Python :: Implementation :: CPython" ,
2626 " Programming Language :: Python :: Implementation :: PyPy" ,
2727]
28- dependencies = [" requests" , " haystack-ai" ]
28+ dependencies = [" requests>=2.25.0 " , " haystack-ai" ]
2929
3030[project .urls ]
3131Documentation = " https://github.com/deepset-ai/haystack-core-integrations/tree/main/integrations/jina#readme"
You can’t perform that action at this time.
0 commit comments