From 5274c52fa6fba2e3442a470ca3e59f2225e4b4b1 Mon Sep 17 00:00:00 2001 From: Andreas Motl Date: Thu, 18 Jan 2024 19:03:09 +0100 Subject: [PATCH 1/2] Tests: Update to pandas 2.1 --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 3c5c5332..09b83db5 100644 --- a/setup.py +++ b/setup.py @@ -75,7 +75,7 @@ def read(path): 'dask', 'stopit>=1.1.2,<2', 'flake8>=4,<8', - 'pandas<2.1', + 'pandas<2.2', 'pytz', ], doc=['sphinx>=3.5,<8', From 8c006f8e4f564c0ccd8a4094a52ac15584e613a5 Mon Sep 17 00:00:00 2001 From: Andreas Motl Date: Thu, 18 Jan 2024 19:21:26 +0100 Subject: [PATCH 2/2] Release 0.35.2 --- CHANGES.txt | 6 ++++++ src/crate/client/__init__.py | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/CHANGES.txt b/CHANGES.txt index a47ac1be..ecce63d1 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -6,6 +6,12 @@ Unreleased ========== +2024/01/18 0.35.2 +================= + +- Test compatibility: Permit installation of pandas 2.1. + + 2024/01/18 0.35.1 ================= diff --git a/src/crate/client/__init__.py b/src/crate/client/__init__.py index 793ef130..49539abf 100644 --- a/src/crate/client/__init__.py +++ b/src/crate/client/__init__.py @@ -29,7 +29,7 @@ # version string read from setup.py using a regex. Take care not to break the # regex! -__version__ = "0.35.1" +__version__ = "0.35.2" apilevel = "2.0" threadsafety = 2