Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 2.5.0
current_version = 2.5.1
allow_dirty = True
tag_name = version-{new_version}
tag = True
Expand Down
2 changes: 1 addition & 1 deletion pymove/_version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '2.5.0'
__version__ = '2.5.1'
3 changes: 1 addition & 2 deletions pymove/core/pandas.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@
from matplotlib.pyplot import figure
from pandas import DataFrame, DateOffset, Series, Timedelta

from pymove.core import MoveDataFrameAbstractModel
from pymove.core.dataframe import MoveDataFrame
from pymove.core.grid import Grid
from pymove.utils.constants import (
Expand Down Expand Up @@ -61,7 +60,7 @@
from pymove.core.dask import DaskMoveDataFrame


class PandasMoveDataFrame(DataFrame, MoveDataFrameAbstractModel):
class PandasMoveDataFrame(DataFrame):
def __init__(
self,
data: Union[DataFrame, List, Dict],
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
]
setup(
name='pymove',
version='2.5.0',
version='2.5.1',
author='Insight Data Science Lab',
author_email='insightlab@dc.ufc.br',
license='MIT',
Expand Down