You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Importing pyproj 3.0.1 on PyPy for Windows raises the following error:
Python 3.7.10 (77787b8f4c49, May 15 2021, 11:51:36)
[PyPy 7.3.5 with MSC v.1927 64 bit (AMD64)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>>> import pyproj
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "X:\pypy3\site-packages\pyproj\__init__.py", line 64, in <module>from pyproj.proj import Proj, pj_list # noqa: F401
File "X:\pypy3\site-packages\pyproj\proj.py", line 21, in <module>from pyproj._transformer import Factors, _Transformer
File "pyproj\_transformer.pyx", line 1, in init pyproj._transformerValueError: array.array size changed, may indicate binary incompatibility. Expected 72 from C header, got 24 from PyObject
The issue is that there is "no clean C interface to the array.array object in Python". See discussion at h5py/h5py#1514 and h5py/h5py#1515 for a possible fix.