<#1995 Published pex on github no longer works wit...
# github-notifications
q
#1995 Published pex on github no longer works with PyPy since 2.1.109 New issue created by zmanji If I download the pex on github for 2.1.108:
Copy code
$ wget <https://github.com/pantsbuild/pex/releases/download/v2.1.108/pex>
$ PEX_PYTHON=/usr/bin/pypy3.8 /usr/bin/pypy3.8 ./pex -V              
2.1.108
For 2.1.109 or newer:
Copy code
$ wget <https://github.com/pantsbuild/pex/releases/download/v2.1.109/pex>
$ PEX_PYTHON=/usr/bin/pypy3.8 /usr/bin/pypy3.8 ./pex -V
Failed to find a compatible PEX_PYTHON=/usr/bin/pypy3.8.

Examined the following interpreters:
1.) /usr/bin/pypy3.8 PyPy==3.8.13

No interpreter compatible with the requested constraints was found:

  Version matches CPython!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,<3.12,>=2.7
Not a big deal because one can still create their own pex that doesn't have the interpreter constraint. pantsbuild/pex