[Python] pyfury0.9.0 installed from the source folder does not work properly #2035
Open
2 tasks done
Labels
bug
Something isn't working
Search before asking
Version
OS:
Ubuntu 24.04.1 LTS
gcc
Anaconda Env:
name:
pyfury_env2
version:
Python 3.9.21
pip list:
(pyfury_env2) leo@leo-dev:~$ pip list Package Version Editable project location --------------- ----------- ------------------------------------ Bottleneck 1.4.2 cloudpickle 3.1.1 Cython 3.0.11 exceptiongroup 1.2.2 iniconfig 2.0.0 mkl_fft 1.3.11 mkl_random 1.2.8 mkl-service 2.4.0 mmh3 5.1.0 numexpr 2.10.1 numpy 1.26.4 packaging 24.2 pandas 2.2.3 pip 25.0 pluggy 1.5.0 pyarrow 14.0.0 pyfury 0.9.0 /home/leo/projects/fury-0.9.0/python pytest 8.3.4 python-dateutil 2.9.0.post0 pytz 2024.1 setuptools 75.8.0 six 1.16.0 tomli 2.2.1 tzdata 2023.3 wheel 0.45.1
structure of
/home/leo/projects/fury-0.9.0/python
(pyfury_env2) leo@leo-dev:~$ tree /home/leo/projects/fury-0.9.0/python /home/leo/projects/fury-0.9.0/python ├── pyfury │ ├── buffer.py │ ├── codegen.py │ ├── error.py │ ├── format │ │ ├── encoder.pxi │ │ ├── encoder.py │ │ ├── _format.pyx │ │ ├── _format.so │ │ ├── infer.py │ │ ├── __init__.py │ │ ├── row.pxi │ │ ├── serializer.py │ │ ├── tests │ │ │ ├── __init__.py │ │ │ ├── test_encoder.py │ │ │ ├── test_infer.py │ │ │ └── test_vectorized.py │ │ └── vectorized.pxi │ ├── _fury.py │ ├── includes │ │ ├── __init__.pxd │ │ ├── libabsl.pxd │ │ ├── libformat.pxd │ │ └── libutil.pxd │ ├── __init__.pxd │ ├── __init__.py │ ├── lib │ │ ├── collection.py │ │ ├── __init__.pxd │ │ ├── __init__.py │ │ ├── mmh3 │ │ │ ├── __init__.pxd │ │ │ ├── __init__.py │ │ │ ├── mmh3.pxd │ │ │ ├── mmh3.pyx │ │ │ ├── mmh3.so │ │ │ └── __pycache__ │ │ │ ├── __init__.cpython-311.pyc │ │ │ ├── __init__.cpython-38.pyc │ │ │ └── __init__.cpython-39.pyc │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-311.pyc │ │ │ ├── __init__.cpython-38.pyc │ │ │ └── __init__.cpython-39.pyc │ │ └── tests │ │ ├── __init__.py │ │ ├── test_collection.py │ │ └── test_mmh3.py │ ├── meta │ │ ├── __init__.py │ │ └── metastring.py │ ├── __pycache__ │ │ ├── __init__.cpython-311.pyc │ │ ├── __init__.cpython-38.pyc │ │ └── __init__.cpython-39.pyc │ ├── resolver.py │ ├── _serialization.pyx │ ├── _serialization.so │ ├── _serializer.py │ ├── serializer.py │ ├── _struct.py │ ├── tests │ │ ├── benchmark.py │ │ ├── core.py │ │ ├── __init__.py │ │ ├── profiling.py │ │ ├── record.py │ │ ├── test_buffer.py │ │ ├── test_codegen.py │ │ ├── test_cross_language.py │ │ ├── test_metastring.py │ │ ├── test_serializer.py │ │ ├── test_struct.py │ │ └── test_type.py │ ├── type.py │ ├── _util.pxd │ ├── util.py │ ├── _util.pyx │ └── _util.so ├── pyfury.egg-info │ ├── dependency_links.txt │ ├── not-zip-safe │ ├── PKG-INFO │ ├── requires.txt │ ├── SOURCES.txt │ └── top_level.txt ├── README.md └── setup.py 14 directories, 76 files
Component(s)
Python
Minimal reproduce step
No errors were encountered in the above steps
Trying to run the testing section gives a compilation error
pytest -v -s .
What did you expect to see?
I expect to see test cases that should execute correctly, or at least need to be runnable
What did you see instead?
Anything Else?
No response
Are you willing to submit a PR?
The text was updated successfully, but these errors were encountered: