File tree Expand file tree Collapse file tree 2 files changed +7
-1
lines changed
integrations/google_vertex Expand file tree Collapse file tree 2 files changed +7
-1
lines changed Original file line number Diff line number Diff line change 60
60
- name : Run tests
61
61
run : hatch run cov-retry
62
62
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"
63
68
- name : Nightly - run unit tests with Haystack main branch
64
69
if : github.event_name == 'schedule'
65
70
run : |
71
+ hatch env prune
66
72
hatch run uv pip install git+https://github.com/deepset-ai/haystack.git@main
67
73
hatch run cov-retry -m "not integration"
68
74
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ classifiers = [
23
23
" Programming Language :: Python :: Implementation :: CPython" ,
24
24
" Programming Language :: Python :: Implementation :: PyPy" ,
25
25
]
26
- dependencies = [" haystack-ai" , " google-cloud-aiplatform>=1.61" , " pyarrow>3 " ]
26
+ dependencies = [" haystack-ai>=2.11.0 " , " google-cloud-aiplatform>=1.61" ]
27
27
28
28
[project .urls ]
29
29
Documentation = " https://github.com/deepset-ai/haystack-core-integrations/tree/main/integrations/google_vertex#readme"
You can’t perform that action at this time.
0 commit comments