Skip to content

Commit

Permalink
Remove more Python 2.7 doc references
Browse files Browse the repository at this point in the history
  • Loading branch information
neersighted committed Nov 11, 2021
1 parent 2d4d5da commit fffa709
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 9 deletions.
5 changes: 0 additions & 5 deletions docs/configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -123,11 +123,6 @@ Defaults to one of the following directories:
Use parallel execution when using the new (`>=1.1.0`) installer.
Defaults to `true`.

{{% note %}}
This configuration will be ignored, and parallel execution disabled when running
Python 2.7 under Windows.
{{% /note %}}

### `virtualenvs.create`

**Type**: boolean
Expand Down
8 changes: 4 additions & 4 deletions docs/managing-environments.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,12 +30,12 @@ to activate one explicitly, see [Switching environments](#switching-between-envi
To easily switch between Python versions, it is recommended to
use [pyenv](https://github.com/pyenv/pyenv) or similar tools.

For instance, if your project is Python 3.6 only, a standard workflow
would be:
For instance, if your project requires a newer Python than is available with
your system, a standard workflow would be:

```bash
pyenv install 3.6.15
pyenv local 3.6.15 # Activate Python 3.6 for the current project
pyenv install 3.9.8
pyenv local 3.9.8 # Activate Python 3.9 for the current project
poetry install
```
{{% /note %}}
Expand Down

0 comments on commit fffa709

Please sign in to comment.