"'Chris Barker' via conda-forge" <
conda...@googlegroups.com> writes:
> I've got a package with a Cython extension that is failing on PyPy:
>
>
https://github.com/conda-forge/py_gd-feedstock/pull/27#issuecomment-1099898244
>
> It appears to be a Cython bug. Maybe it will be fixed in a future versino
> of Cython, whoh knows? But as far as I know, non one is using this paakge
> with PyPy anyway, so I'd be happy to simply skip that and not worry about
> it.
>
> How do I tell the CI to not bother trying to build for PyPy?
Add [python_impl == 'pypy'] to your meta.yml build skip settings; I have
a package skipping PyPy and Windows with the following skip setting:
build:
skip: true # [win or python_impl == 'pypy']
After making the change to meta.yml you'll have to rerender.
cheers,
Doug