Update creating_integration_manifest.md, fix git url for testing custom requirements (#2528)

This commit is contained in:
rrooggiieerr 2025-01-13 20:57:37 +01:00 committed by GitHub
parent 0af931dcc4
commit 766b4dc95c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -155,7 +155,7 @@ It is also possible to use a public git repository to install a requirement. Th
```json ```json
{ {
"requirements": ["git+https://github.com/<user>/<project>.git@<git ref>"] "requirements": ["<library>@git+https://github.com/<user>/<project>.git@<git ref>"]
} }
``` ```
`<git ref>` can be any git reference: branch, tag, commit hash, ... . See [PIP documentation about git support](https://pip.pypa.io/en/stable/topics/vcs-support/#git). `<git ref>` can be any git reference: branch, tag, commit hash, ... . See [PIP documentation about git support](https://pip.pypa.io/en/stable/topics/vcs-support/#git).
@ -164,7 +164,7 @@ The following example will install the `except_connect` branch of the `pycoolmas
```json ```json
{ {
"requirements": ["git+https://github.com/issacg/pycoolmaster.git@except_connect"] "requirements": ["pycoolmaster@git+https://github.com/issacg/pycoolmaster.git@except_connect"]
} }
``` ```