File tree Expand file tree Collapse file tree 3 files changed +6
-7
lines changed Expand file tree Collapse file tree 3 files changed +6
-7
lines changed Original file line number Diff line number Diff line change 11# TFS-Pandas Changelog
22
3+ ## Version 3.5.3
4+
5+ - Changed:
6+ - Fixed a wrong deprecation of the ` .merge ` method of ` TfsDataFrames ` .
7+
38## Version 3.5.2
49
510- Changed:
Original file line number Diff line number Diff line change 1010__title__ = "tfs-pandas"
1111__description__ = "Read and write tfs files."
1212__url__ = "https://github.com/pylhc/tfs"
13- __version__ = "3.5.2 "
13+ __version__ = "3.5.3 "
1414__author__ = "pylhc"
1515__author_email__ = "[email protected] " 1616__license__ = "MIT"
Original file line number Diff line number Diff line change @@ -194,11 +194,6 @@ def merge(
194194 ``pandas.Dataframe`` method of the same name. Resulting headers are either merged according to the
195195 provided **how_headers** method or as given via **new_headers**.
196196
197- ..warning::
198- This method uses ``pandas.DataFrame.merge`` internally, which has been deprecated for a
199- while and removed with pandas 2.0. It will be removed from ``tfs-pandas`` as well in the
200- next release.
201-
202197 Args:
203198 right (Union[TfsDataFrame, pd.DataFrame]): The ``TfsDataFrame`` to merge with the caller.
204199 how_headers (str): Type of merge to be performed for the headers. Either **left** or **right**.
@@ -217,7 +212,6 @@ def merge(
217212 Returns:
218213 A new ``TfsDataFrame`` with the merged data and merged headers.
219214 """
220- LOGGER .warn ("This method has been removed in pandas 2.0 and will be removed from TfsDataFrames too. Please use 'tfs.frame.concat' instead." )
221215 LOGGER .debug ("Merging data through 'pandas'" )
222216 if not hasattr (right , "headers" ):
223217 LOGGER .debug ("Converting 'right' to TfsDataFrame for merging" )
You can’t perform that action at this time.
0 commit comments