From 4498c5b4d8b0673dbc7d9731bc11d9cc5a2c6087 Mon Sep 17 00:00:00 2001 From: Pradyun Gedam <3275593+pradyunsg@users.noreply.github.com> Date: Mon, 29 Mar 2021 22:34:02 +0100 Subject: [PATCH] Drop the example based on using pip's internals (#519) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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. --- examples.md | 17 ----------------- 1 file changed, 17 deletions(-) diff --git a/examples.md b/examples.md index ac4630d..759a277 100644 --- a/examples.md +++ b/examples.md @@ -389,23 +389,6 @@ jobs: ${{ runner.os }}-pip- ``` -### Using a script to get cache location - -> Note: This uses an internal pip API and may not always work -```yaml -- name: Get pip cache dir - id: pip-cache - run: | - python -c "from pip._internal.locations import USER_CACHE_DIR; print('::set-output name=dir::' + USER_CACHE_DIR)" - -- uses: actions/cache@v2 - with: - path: ${{ steps.pip-cache.outputs.dir }} - key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }} - restore-keys: | - ${{ runner.os }}-pip- -``` - ## Python - pipenv ```yaml