squeaky-pl / portable-pypy

Portable 64 bit x86 PyPy binaries for many Linux distributions.
Other
478 stars 38 forks source link

pep8 segmentation fault #51

Closed Nachtfeuer closed 7 years ago

Nachtfeuer commented 7 years ago

Running pypy for Python 3.5 compatible I'm running into an issue with pep8: It's to mention that PYTHON_VERSION for py27, py33, py34, py35, py36 and pypy is working fine; of course pypy representing the Python 2.7 compatible version (see script).

# assume you have Docker installed
git clone https://github.com/Nachtfeuer/concept-py.git
cd concept-py
PYTHON_VERSION=pypy3 scripts/run_python.sh

You can verify the installation instructions in the switch ... case for pypy3. The pep8 tool is basically running; when I do it manually with the defaults I see the line length warnings but the tool finally crashes with a segmentation fault. I tried different versions of pep8 without success.

squeaky-pl commented 7 years ago

It looks like it was fixed in PyPy3 5.8. If I subsitute 5.7.1 with 5.8 this doesnt happen anymore.

Nachtfeuer commented 7 years ago

Definitely. It does work all fine now :) Thanks