Skip to content

Commit

Permalink
docs: update readme add additional dependencies in requirements
Browse files Browse the repository at this point in the history
  • Loading branch information
RDWimmers committed Jul 22, 2024
1 parent b139933 commit f8260f3
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,8 +61,8 @@ sphinx-build -b html docs public
We format our code with black and isort.

```bash
black --config "pyproject.toml" src/baec tests notebooks
isort --settings-path "pyproject.toml" src/baec tests notebooks
black --config "pyproject.toml" src/baec tests
isort --settings-path "pyproject.toml" src/baec tests
```

## Lint
Expand Down Expand Up @@ -95,11 +95,11 @@ pip install pip-tools
Generate requirements.txt file with:

```bash
pip-compile --extra=test --extra=lint --extra=docs --output-file=requirements.txt pyproject.toml
pip-compile --extra=test --extra=lint --extra=docs --extra=aws --output-file=requirements.txt pyproject.toml
```

Update the requirements within the defined ranges with:

```bash
pip-compile --upgrade --extra=test --extra=lint --extra=docs --output-file=requirements.txt pyproject.toml
pip-compile --upgrade --extra=test --extra=lint --extra=docs --extra=aws --output-file=requirements.txt pyproject.toml
```

0 comments on commit f8260f3

Please sign in to comment.