This repository was archived by the owner on Jun 16, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +17
-7
lines changed Expand file tree Collapse file tree 3 files changed +17
-7
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog db-rocket
2
2
3
+ ## Version 3.1.0
4
+ - Use uv when installing packages
5
+
6
+ ## Version 3.0.6
7
+ - Warn when failing to create requirements.txt file with poetry instead of raising an error
8
+
3
9
## Version 3.0.6
4
10
- Create folder before copying file
5
11
Original file line number Diff line number Diff line change @@ -216,21 +216,25 @@ def _build_and_deploy(
216
216
if dependency_file_exist :
217
217
logger .info (
218
218
f"""Watch activated. Uploaded your project to databricks. Install your project in your databricks notebook by running:
219
- %pip install --upgrade pip
220
- %pip install { index_urls_options } -r { install_path } /{ uploaded_dependency_file }
221
- %pip install --no-deps -e { install_path }
219
+ %sh
220
+ pip install uv
221
+ uv pip install { index_urls_options } -r { install_path } /{ uploaded_dependency_file }
222
+ uv pip install --no-deps -e { install_path }
223
+
224
+ and in a new Python cell:
222
225
dbutils.library.restartPython()
223
226
224
- and following in a new Python cell:
227
+ and and in one more Python cell:
225
228
%load_ext autoreload
226
229
%autoreload 2
227
230
{ extra_watch_command } """
228
231
)
229
232
else :
230
233
logger .info (
231
234
f"""Watch activated. Uploaded your project to databricks. Install your project in your databricks notebook by running:
232
- %pip install --upgrade pip
233
- %pip install -e { install_path }
235
+ %sh
236
+ pip install uv
237
+ uv pip install -e { install_path }
234
238
235
239
and following in a new Python cell:
236
240
%load_ext autoreload
Original file line number Diff line number Diff line change 9
9
10
10
setuptools .setup (
11
11
name = "databricks-rocket" ,
12
- version = "3.0.7 " ,
12
+ version = "3.1.0 " ,
13
13
author = "GetYourGuide" ,
14
14
15
15
description = "Keep your local python scripts installed and in sync with a databricks notebook. Shortens the feedback loop to develop projects using a hybrid enviroment" ,
You can’t perform that action at this time.
0 commit comments