Hello, I need help, when testing "test_plot_data_points"
, "test_plot_lines"
, they fail, please help.
I leave a link with Repl of the project.
Hello, I need help, when testing "test_plot_data_points"
, "test_plot_lines"
, they fail, please help.
I leave a link with Repl of the project.
Well, looking I found the solution, it turns out that the problem is due to the version of “pandas”, a previous version has to be installed and the tests run successfully.
Solve the problem:
In “Repl” install pandas manually, I used the commands:
python -m pip install pip --upgrade
pip install pandas == 1.1.5
And I ran the tests, and it worked.
Hope that helps.