Skip to content

Requirements for PyPy #213

@rschwab68

Description

@rschwab68

For using PyPy the pandas requirement is


if (
    platform.python_implementation() == "PyPy"
):  # This is mandatory to fix pandas issues with PyPy
    INSTALL_REQUIRES.append("pandas<=1.2.5")
else:
    INSTALL_REQUIRES.append("pandas>=1.1.5")
    

Same requirement in

This seems to be outdated or?
With this pandas requirement, it does not build on Ubuntu 22.04.
It is building, if I change the requirement to
pandas>=1.2.5

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions