You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+14Lines changed: 14 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -45,6 +45,20 @@ cd nx-neptune
45
45
make install
46
46
```
47
47
48
+
Dependencies are pinned in lock files (`requirements.txt`, `requirements-dev.txt`, `requirements-jupyter.txt`) generated by [pip-tools](https://pip-tools.readthedocs.io/). If you update `pyproject.toml`, regenerate them with:
49
+
50
+
```bash
51
+
make lock
52
+
```
53
+
54
+
> **Note:**`make lock` must be run with a Python 3.11 interpreter to match CI. If your default Python is a different version, create a 3.11 venv:
55
+
> ```bash
56
+
> python3.11 -m venv .venv-lock
57
+
>source .venv-lock/bin/activate
58
+
> pip install pip-tools
59
+
> make lock
60
+
>```
61
+
48
62
## Prerequisite
49
63
Before using this backend, ensure the following prerequisites are met:
0 commit comments