Skip to content

Commit d3b1e07

Browse files
matthewfeickertduetosymmetry
authored andcommitted
fix: Use 'req@url' syntax to install from remote VCS
* Use 'req@url' syntax when using pip to install from a remote git repository over 'url#egg=req' to avoid the use of #egg= fragments with a non-PEP 508 name. This will be required in pip v25.0+. - c.f. pypa/pip#11617 for more details.
1 parent 6e15982 commit d3b1e07

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ python -m pip install .
4242
In your Python environment run
4343

4444
```
45-
python -m pip install "git+https://github.com/duetosymmetry/ads2inspire.git#egg=ads2inspire"
45+
python -m pip install "ads2inspire@git+https://github.com/duetosymmetry/ads2inspire.git"
4646
```
4747

4848
## Usage

0 commit comments

Comments
 (0)