Skip to content

Commit 4498c5b

Browse files
authored
Drop the example based on using pip's internals (#519)
pip's documentation explicitly states to not use `import pip`: > While it is implemented in Python, and so is available from your Python code via > `import pip`, you must not use pip’s internal APIs in this way. This example is in direct contradiction with the documentation's guidance and, thus, has been removed.
1 parent 4134e6d commit 4498c5b

File tree

1 file changed

+0
-17
lines changed

1 file changed

+0
-17
lines changed

examples.md

-17
Original file line numberDiff line numberDiff line change
@@ -389,23 +389,6 @@ jobs:
389389
${{ runner.os }}-pip-
390390
```
391391

392-
### Using a script to get cache location
393-
394-
> Note: This uses an internal pip API and may not always work
395-
```yaml
396-
- name: Get pip cache dir
397-
id: pip-cache
398-
run: |
399-
python -c "from pip._internal.locations import USER_CACHE_DIR; print('::set-output name=dir::' + USER_CACHE_DIR)"
400-
401-
- uses: actions/cache@v2
402-
with:
403-
path: ${{ steps.pip-cache.outputs.dir }}
404-
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
405-
restore-keys: |
406-
${{ runner.os }}-pip-
407-
```
408-
409392
## Python - pipenv
410393

411394
```yaml

0 commit comments

Comments
 (0)