Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -84,13 +84,13 @@ The requirements for the backends are listed in the table above, while sub-packa
For example, the following command will install Tripper with the [tripper.datadoc] sub-package and the rdflib backend enabled:

```shell
pip install tripper[datadoc] rdflib
pip install 'tripper[datadoc]' rdflib
```

Developers should install Tripper with the `dev` extras and enable [pre-commit]:

```shell
pip install tripper[dev]
pip install 'tripper[dev]'
pre-commit install # Enable pre-commit and installing hooks
```

Expand Down
2 changes: 1 addition & 1 deletion docs/developers.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ Finally, press the "Publish release" button and ensure the release workflow succ
## Testing documentation locally
To test the documentation locally, just install and run [mkdocs]:

pip install .[dev]
pip install '.[dev]'
mkdocs build
mkdocs serve

Expand Down
4 changes: 2 additions & 2 deletions docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -84,13 +84,13 @@ The requirements for the backends are listed in the table above, while sub-packa
For example, the following command will install Tripper with the [tripper.datadoc] sub-package and the rdflib backend enabled:

```shell
pip install tripper[datadoc] rdflib
pip install 'tripper[datadoc]' rdflib
```

Developers should install Tripper with the `dev` extras and enable [pre-commit]:

```shell
pip install tripper[dev]
pip install 'tripper[dev]'
pre-commit install # Enable pre-commit and installing hooks
```

Expand Down