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: CONTRIBUTING.md
+11-11Lines changed: 11 additions & 11 deletions
Original file line number
Diff line number
Diff line change
@@ -28,16 +28,16 @@ Any table which name follows the format `tool.poetry[.group.{group_name}].depend
28
28
29
29
For running any of the following commands, position your shell in the project root, where `pyproject.toml` is located.
30
30
31
-
```
32
-
$ poetry install # Install all dependencies, including test and dev
33
-
$ poetry install --without test,dev # Install all dependencies, except those in groups test and dev
34
-
$ poetry shell # Enters the environment shell
35
-
$ poetry run <command> # Runs a command in the environment without having to open the shell. For example `poetry run pytest`
36
-
$ poetry update [package_1] [package_2] # Update all the dependencies, or those specified to the latest compatible version
37
-
$ poetry remove <package> [--group G] # Remove the listed package, optionally from a specific group
38
-
$ poetry show # List all dependencies
39
-
$ poetry config --list # Shows the current Pyproject configuration
40
-
$ poetry export -f requirements.txt --output requirements.txt # Export all dependencies to requirements.txt file
31
+
```bash
32
+
poetry install # Install all dependencies, including test and dev
33
+
poetry install --without test,dev # Install all dependencies, except those in groups test and dev
34
+
poetry shell # Enters the environment shell
35
+
poetry run <command># Runs a command in the environment without having to open the shell. For example `poetry run pytest`
36
+
poetry update [package_1] [package_2] # Update all the dependencies, or those specified to the latest compatible version
37
+
poetry remove <package> [--group G] # Remove the listed package, optionally from a specific group
38
+
poetry show # List all dependencies
39
+
poetry config --list # Shows the current Pyproject configuration
40
+
poetry export -f requirements.txt --output requirements.txt # Export all dependencies to requirements.txt file
41
41
```
42
42
43
43
For more detailed use cases, and other commands, please visit the [cli documentation](https://python-poetry.org/docs/cli/).
@@ -80,7 +80,7 @@ To make changes to this repo, submit a Pull Request to the `dev` branch. Once it
80
80
81
81
As of now, we have a basic CI setup that can be checked here: [check.yaml](./.github/workflows/check.yaml). This setup can help you know if some tests are failing for your changes and that you need to make some changes before submitting the Pull Request.
82
82
83
-
#### Notes on commits:
83
+
#### Notes on commits
84
84
85
85
We would like to have some naming standards on commits. We are going to try as much as we can to use the following format when naming our commits:
Copy file name to clipboardExpand all lines: README.md
+5-5Lines changed: 5 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -5,7 +5,7 @@ practical applications. Designed to be used as consulting material for those who
5
5
6
6
Here is a checklist of the Data Structures and Algorithms we have or we are planning to add. If you would like to add more to the checklist, just create a Pull Request with your additions and we will review it.
0 commit comments