diff options
author | robot-piglet <robot-piglet@yandex-team.com> | 2024-04-15 10:18:44 +0300 |
---|---|---|
committer | robot-piglet <robot-piglet@yandex-team.com> | 2024-04-15 10:26:35 +0300 |
commit | 7930380b354abe9969174901a4e8a730ab1d0906 (patch) | |
tree | 43c5e5107bc0cf0ac7c74f82874451a7a83aa173 /contrib/python/pycparser/py3/README.rst | |
parent | 969a7065950f3f4c76d45c7bb813a3e27df8a466 (diff) | |
download | ydb-7930380b354abe9969174901a4e8a730ab1d0906.tar.gz |
Intermediate changes
Diffstat (limited to 'contrib/python/pycparser/py3/README.rst')
-rw-r--r-- | contrib/python/pycparser/py3/README.rst | 26 |
1 files changed, 3 insertions, 23 deletions
diff --git a/contrib/python/pycparser/py3/README.rst b/contrib/python/pycparser/py3/README.rst index e8ae8c1555..388a01e817 100644 --- a/contrib/python/pycparser/py3/README.rst +++ b/contrib/python/pycparser/py3/README.rst @@ -1,5 +1,5 @@ =============== -pycparser v2.21 +pycparser v2.22 =============== @@ -83,9 +83,7 @@ Installing Prerequisites ------------- -* **pycparser** was tested on Python 2.7, 3.4-3.6, on both Linux and - Windows. It should work on any later version (in both the 2.x and 3.x lines) - as well. +* **pycparser** was tested with Python 3.8+ on Linux, macOS and Windows. * **pycparser** has no external dependencies. The only non-stdlib library it uses is PLY, which is bundled in ``pycparser/ply``. The current PLY version is @@ -101,28 +99,10 @@ though. Installation process -------------------- -Installing **pycparser** is very simple. Once you download and unzip the -package, you just have to execute the standard ``python setup.py install``. The -setup script will then place the ``pycparser`` module into ``site-packages`` in -your Python's installation library. - -Alternatively, since **pycparser** is listed in the `Python Package Index -<https://pypi.org/project/pycparser/>`_ (PyPI), you can install it using your -favorite Python packaging/distribution tool, for example with:: +The recommended way to install **pycparser** is with ``pip``:: > pip install pycparser -Known problems --------------- - -* Some users who've installed a new version of **pycparser** over an existing - version ran into a problem using the newly installed library. This has to do - with parse tables staying around as ``.pyc`` files from the older version. If - you see unexplained errors from **pycparser** after an upgrade, remove it (by - deleting the ``pycparser`` directory in your Python's ``site-packages``, or - wherever you installed it) and install again. - - Using ===== |