-
Notifications
You must be signed in to change notification settings - Fork 14
Description
This PR is currently failing CI:
#68
Create a new PR that accomplishes the same goal as that PR, but passes CI.
Here's a summary of why that PR is failing:
The failure in the GitHub Actions workflow is due to a build error caused by compatibility issues between several Python packages. The root cause of the failure is a conflict between the installed versions of pandas and numpy. Specifically, the version of pandas being used requires a version of numpy that is not compatible with the version currently installed in the project. This type mismatch causes the build to fail during the package configuration step, as pandas attempts to use features from numpy that are unavailable in the installed version.
Related workflow logs
Relevant logs:
ERROR: Could not find a version that satisfies the requirement numpy>=1.20.0 (from pandas)
ERROR: No matching distribution found for numpy>=1.20.0
Verification tips
If you need to create a virtual environment, use the .venv folder, like:
python -m venv .venv
When you have updated packages, make sure you can install them successfully in the virtual environment.
To decide what command to use to install the packages, check the repo's README.md and GitHub Actions workflows in the .github/workflows directory.
Leave a comment on the PR indicating what command you used to verify successful installation.