Skip to content

Commit b089ef4

Browse files
ericvergnaudEric Vergnaud
andauthored
fix makefile and instructions (#1569)
## Changes fix makefile and update setup instructions ### Linked issues None ### Functionality - [ ] added relevant user documentation - [ ] added new CLI command - [ ] modified existing command: `databricks labs ucx ...` - [ ] added a new workflow - [ ] modified existing workflow: `...` - [ ] added a new table - [ ] modified existing table: `...` ### Tests - [x] manually tested - [ ] added unit tests - [ ] added integration tests - [ ] verified on staging environment (screenshot attached) Co-authored-by: Eric Vergnaud <[email protected]>
1 parent ac40c8d commit b089ef4

File tree

2 files changed

+10
-2
lines changed

2 files changed

+10
-2
lines changed

CONTRIBUTING.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -227,7 +227,16 @@ def test_something(ws):
227227

228228
This section provides a step-by-step guide to set up and start working on the project. These steps will help you set up your project environment and dependencies for efficient development.
229229

230-
To begin, run `make dev` to install [Hatch](https://github.com/pypa/hatch), create the default environment and install development dependencies, assuming you've already cloned the github repo.
230+
To begin, install [Hatch](https://github.com/pypa/hatch), which is our build tool.
231+
232+
On MacOSX, this is achieved using the following:
233+
```shell
234+
brew install hatch
235+
```
236+
237+
The clone the github repo, and `cd` into it.
238+
239+
To begin, run `make dev` to create the default environment and install development dependencies.
231240

232241
```shell
233242
make dev

Makefile

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ clean:
55
rm -fr **/*.pyc
66

77
.venv/bin/python:
8-
pip install hatch
98
hatch env create
109

1110
dev: .venv/bin/python

0 commit comments

Comments
 (0)