diff options
| author | Steve Piercy <web@stevepiercy.com> | 2016-04-12 02:47:57 -0700 |
|---|---|---|
| committer | Steve Piercy <web@stevepiercy.com> | 2016-04-12 02:47:57 -0700 |
| commit | d603697517d56a1e2f2a5707ebba922db24f5c71 (patch) | |
| tree | b9f1db047a31a4b0d97e773bb2474977c8671ab1 /docs/glossary.rst | |
| parent | 74cf44544cb2c6dbd4a0ae7b01881ab450194f53 (diff) | |
| download | pyramid-d603697517d56a1e2f2a5707ebba922db24f5c71.tar.gz pyramid-d603697517d56a1e2f2a5707ebba922db24f5c71.tar.bz2 pyramid-d603697517d56a1e2f2a5707ebba922db24f5c71.zip | |
- replace `pyvenv` with `python3 -m venv`
Diffstat (limited to 'docs/glossary.rst')
| -rw-r--r-- | docs/glossary.rst | 16 |
1 files changed, 11 insertions, 5 deletions
diff --git a/docs/glossary.rst b/docs/glossary.rst index 1d8e0de1b..fd32ed796 100644 --- a/docs/glossary.rst +++ b/docs/glossary.rst @@ -1100,10 +1100,16 @@ Glossary checker, and applying a renderer to a dictionary returned from the view. pip - The `Python Packaging Authority <https://www.pypa.io/>`_ recommended tool - for installing Python packages. + The `Python Packaging Authority's <https://www.pypa.io/>`_ recommended + tool for installing Python packages. pyvenv - The Python Packaging Authority's recommended command for `creating - virtual environments on Python 3.4 and greater - <https://packaging.python.org/en/latest/installing/#creating-virtual-environments>`_. + The Python Packaging Authority formerly recommended using this command + for `creating virtual environments on Python 3.4 and 3.5 + <https://packaging.python.org/en/latest/installing/#creating-virtual-environments>`_, + but it is deprecated in 3.6 in favor of ``python3 -m venv`` which is + backward compatible. + + venv + The `Python Packaging Authority's <https://www.pypa.io/>`_ recommended + tool for creating virtual environments. |
