Skip to content

Commit 3a6fb76

Browse files
authored
Fix for databricks_cli import error (nv-morpheus#1604)
* Fixes `ModuleNotFoundError: No module named 'databricks_cli'` issue Closes nv-morpheus#1600 ## By Submitting this PR I confirm: - I am familiar with the [Contributing Guidelines](https://github.com/nv-morpheus/Morpheus/blob/main/docs/source/developer_guide/contributing.md). - When the PR is ready for review, new or existing tests cover these changes. - When the PR is ready for review, the documentation is up to date with these changes. Authors: - David Gardner (https://github.com/dagardner-nv) Approvers: - Michael Demoret (https://github.com/mdemoret-nv) URL: nv-morpheus#1604
1 parent 25e9344 commit 3a6fb76

5 files changed

+5
-0
lines changed

conda/environments/all_cuda-121_arch-x86_64.yaml

+1
Original file line numberDiff line numberDiff line change
@@ -117,6 +117,7 @@ dependencies:
117117
- --find-links https://data.dgl.ai/wheels-test/repo.html
118118
- --find-links https://data.dgl.ai/wheels/cu121/repo.html
119119
- PyMuPDF==1.23.21
120+
- databricks-cli < 0.100
120121
- databricks-connect
121122
- dgl==2.0.0
122123
- dglgo

conda/environments/dev_cuda-121_arch-x86_64.yaml

+1
Original file line numberDiff line numberDiff line change
@@ -95,6 +95,7 @@ dependencies:
9595
- zlib=1.2.13
9696
- pip:
9797
- PyMuPDF==1.23.21
98+
- databricks-cli < 0.100
9899
- databricks-connect
99100
- milvus==2.3.5
100101
- pymilvus==2.3.6

conda/environments/examples_cuda-121_arch-x86_64.yaml

+1
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,7 @@ dependencies:
6161
- --find-links https://data.dgl.ai/wheels-test/repo.html
6262
- --find-links https://data.dgl.ai/wheels/cu121/repo.html
6363
- PyMuPDF==1.23.21
64+
- databricks-cli < 0.100
6465
- databricks-connect
6566
- dgl==2.0.0
6667
- dglgo

conda/environments/runtime_cuda-121_arch-x86_64.yaml

+1
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ dependencies:
3737
- watchdog=3.0
3838
- websockets
3939
- pip:
40+
- databricks-cli < 0.100
4041
- databricks-connect
4142
- milvus==2.3.5
4243
- pymilvus==2.3.6

dependencies.yaml

+1
Original file line numberDiff line numberDiff line change
@@ -271,6 +271,7 @@ dependencies:
271271
- websockets
272272
- pip
273273
- pip:
274+
- databricks-cli < 0.100
274275
- databricks-connect
275276
- milvus==2.3.5 # update to match pymilvus when available
276277
- pymilvus==2.3.6

0 commit comments

Comments
 (0)