aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJ08nY2024-01-23 14:31:26 +0100
committerJ08nY2024-01-23 14:31:26 +0100
commit256d247210c9b22797eeadb8776bfa2204bf9186 (patch)
tree5021e23fbb719321c380202d78e15b0ac1705f1c
parent95cd06e840829cf05bd621247f27a6573dd4676f (diff)
downloadpyecsca-256d247210c9b22797eeadb8776bfa2204bf9186.tar.gz
pyecsca-256d247210c9b22797eeadb8776bfa2204bf9186.tar.zst
pyecsca-256d247210c9b22797eeadb8776bfa2204bf9186.zip
-rw-r--r--README.md1
-rw-r--r--docs/index.rst2
-rw-r--r--pyproject.toml4
3 files changed, 6 insertions, 1 deletions
diff --git a/README.md b/README.md
index e4e0155..53c3d6b 100644
--- a/README.md
+++ b/README.md
@@ -34,6 +34,7 @@ It is currently in an alpha stage of development and thus only provides:
- [Numpy](https://www.numpy.org/)
- [Scipy](https://www.scipy.org/)
- [sympy](https://sympy.org/)
+ - [pandas](https://pandas.pydata.org/)
- [atpublic](https://public.readthedocs.io/)
- [fastdtw](https://github.com/slaypni/fastdtw)
- [asn1crypto](https://github.com/wbond/asn1crypto)
diff --git a/docs/index.rst b/docs/index.rst
index 88b9292..a6943ae 100644
--- a/docs/index.rst
+++ b/docs/index.rst
@@ -126,6 +126,7 @@ Requirements
- Numpy_
- Scipy_
- sympy_
+ - pandas_
- atpublic_
- fastdtw_
- asn1crypto_
@@ -220,6 +221,7 @@ Development was supported by the Masaryk University grant `MUNI/C/1707/2018 <htt
.. _Numpy: https://www.numpy.org
.. _Scipy: https://www.scipy.org
.. _sympy: https://sympy.org/
+.. _pandas: https://pandas.pydata.org/
.. _matplotlib: https://matplotlib.org/
.. _atpublic: https://public.readthedocs.io/
.. _fastdtw: https://github.com/slaypni/fastdtw
diff --git a/pyproject.toml b/pyproject.toml
index 320edba..c0968fa 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -31,6 +31,7 @@
"numpy==1.24.4",
"scipy",
"sympy>=1.7.1",
+ "pandas",
"atpublic",
"cython",
"fastdtw",
@@ -81,7 +82,8 @@ markers = [
"slow: marks tests as slow (deselect with '-m \"not slow\"')",
]
filterwarnings = [
- "ignore:Deprecated call to `pkg_resources.declare_namespace"
+ "ignore:Deprecated call to `pkg_resources.declare_namespace",
+ "ignore:(?s).*Pyarrow will become a required dependency of pandas:DeprecationWarning", # pandas pyarrow (pandas<3.0),
]
[tool.mypy]