We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Using the append method of a pandas dataframe or series is deprecated.
Python >= 3.9
Use any method that uses append in a 3.9 environment and it will raise a FutureWarning
No warning raised
Changing all the appends to concats is a straightforward task, it would be a good first issue. It would also be a step forward into #1919
The text was updated successfully, but these errors were encountered:
@daviddavo is this fixed?
Sorry, something went wrong.
Yeah, it should be fixed with #2058
No branches or pull requests
Description
Using the append method of a pandas dataframe or series is deprecated.
In which platform does it happen?
Python >= 3.9
How do we replicate the issue?
Use any method that uses append in a 3.9 environment and it will raise a FutureWarning
Expected behavior (i.e. solution)
No warning raised
Other Comments
Changing all the appends to concats is a straightforward task, it would be a good first issue. It would also be a step forward into #1919
The text was updated successfully, but these errors were encountered: