chore: 2nd try - simplify python dependencies (#27505)

This commit is contained in:
Maxime Beauchemin
2024-03-18 18:39:41 -07:00
committed by GitHub
parent f4bdcb5743
commit 56a6660c16
28 changed files with 621 additions and 610 deletions

View File

@@ -477,7 +477,7 @@ python3 -m venv venv # setup a python3 virtualenv
source venv/bin/activate
# Install external dependencies
pip install -r requirements/testing.txt
pip install -r requirements/development.txt
# Install Superset in editable (development) mode
pip install -e .
@@ -531,7 +531,7 @@ If you add a new requirement or update an existing requirement (per the `install
```bash
$ python3 -m venv venv
$ source venv/bin/activate
$ python3 -m pip install -r requirements/integration.txt
$ python3 -m pip install -r requirements/development.txt
$ pip-compile-multi --no-upgrade
```
@@ -749,7 +749,7 @@ The current status of the usability of each flag (stable vs testing, etc) can be
Superset uses Git pre-commit hooks courtesy of [pre-commit](https://pre-commit.com/). To install run the following:
```bash
pip3 install -r requirements/integration.txt
pip3 install -r requirements/development.txt
pre-commit install
```