Skip to content

Get rid of pandas dependency #291

New issue

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

Merged
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
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Migrate to built-in `Warning` instead of a custom one.
- Migrate to built-in `RecursionError` instead of a custom one.
- Collect full exception traceback.
- Rework `tarantool.Datetime` implementation to use built-in
`datetime.datetime`. External changes are as follows. Some of them
are **breaking**.
- Package no longer depends on `pandas` (#290).
- `__repr__` has been changed.
- Input arguments are validated with `datetime.datetime` rules.
- Class is no longer expected to throw `pandas.Timestamp`
exceptions. `datetime.datetime` exceptions will
be thrown instead of them.
- Drop the support of `__eq__` operator for `pandas.Timestamp`.

## 0.12.1 - 2023-02-28

Expand Down
1 change: 0 additions & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -344,7 +344,6 @@
intersphinx_mapping = {
'python': ('http://docs.python.org/', None),
'msgpack': ('https://msgpack-python.readthedocs.io/en/latest/', None),
'pandas': ('https://pandas.pydata.org/docs/', None),
'pytz': ('https://pytz.sourceforge.net/', None),
}

Expand Down
1 change: 0 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
msgpack
pandas
pytz
dataclasses; python_version <= '3.6'
1 change: 0 additions & 1 deletion rpm/SPECS/python-tarantool.spec
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@ Python client library for Tarantool.}
%package -n python3-%{srcname}

Requires: python3-msgpack
Requires: python3-pandas
Requires: python3-pytz

Summary: %{summary}
Expand Down
Loading