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
# (among which `pip-tools` that contains `pip-compile`)
648
+
pip install -r dev-requirements.txt
649
+
650
+
# Install the direct dependencies (listed in `requirements.in`
651
+
# This also installs the indirect dependencies these packages depend upon.
652
+
pip install -r requirements.in
653
+
654
+
# Add code/doc using this package and test until it is ready.
655
+
656
+
# Generate the `requirements.txt` file from `requirements.in`
657
+
# This can be slow, be patient
658
+
pip-compile requirements.in
659
+
660
+
# Commit the changes (where XXX denotes the package name)
661
+
git add requirements.in requirements.txt
662
+
git commit -m "➕ Add dependency: XXX"
663
+
664
+
# Push your feature branch to your `origin` repository
665
+
git push -u origin feature/add_dependency_XXX
666
+
```
667
+
- [**Create a Pull Request**](https://docs.github.com/en/pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/creating-a-pull-request) with your changes:
668
+
- Open your clone repository of `trio-docs` on *GitHub* (`https://github.com/YOUR_USERNAME/trio-docs`)
669
+
- Click the `Pull Requests` tab
670
+
- Click "`Compare & pull request`" in the yellow banner next to your branch name
0 commit comments