diff --git a/doc/source/changelog.rst b/doc/source/changelog.rst index 5ff770d2..12f3ea77 100644 --- a/doc/source/changelog.rst +++ b/doc/source/changelog.rst @@ -1,7 +1,7 @@ Changelog ^^^^^^^^^ -Pantab 5.1.0rc0 (XXXX-XX-XX) +Pantab 5.1.0rc1 (XXXX-XX-XX) ========================= @@ -39,7 +39,7 @@ tableauhyperapi Package is Now an Optional Dependency Historically we have required users to install the tableauhyperapi Python package alongside pantab. However, this can cause issues when a user installs a version of the tableauhyperapi package that is incompatible with the binaries provided already by pantab. There is no great way to prevent this via Python packaging, and it can yield subtle or even outright bugs, especially on Windows platforms. -Aside from the packaging difficulties, dropping this dependency now makes pantab a much smaller installation. Depending on your platform, this may save you anywhere from 60-80 MB of disk space per installation. +Aside from the packaging difficulties, dropping this dependency now makes pantab a much smaller installation. While the exact amount of disk space saved will depend upon the platform, users should expect to save roughly 250 MB of disk space per installation. If you decide to still install both, pantab will continue to work alongside the tableauhyperapi and can continue to accept the TableName / Name objects from that library. However, for Windows users in particular, we advise against installing both packages. diff --git a/doc/source/conf.py b/doc/source/conf.py index 4d3ea08c..1e9913bc 100644 --- a/doc/source/conf.py +++ b/doc/source/conf.py @@ -5,7 +5,7 @@ project = "pantab" copyright = "2019-2024, Will Ayd, innobi, LLC" author = "Will Ayd, innobi, LLC" -release = "5.1.0rc0" +release = "5.1.0rc1" # -- General configuration --------------------------------------------------- diff --git a/pyproject.toml b/pyproject.toml index 6e0e3a98..52ad61ba 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -7,7 +7,7 @@ build-backend = "scikit_build_core.build" [project] name = "pantab" -version = "5.1.0rc0" +version = "5.1.0rc1" description = "Converts pandas DataFrames into Tableau Hyper Extracts and back" license = {file = "LICENSE.txt"} readme = "README.md" diff --git a/src/pantab/__init__.py b/src/pantab/__init__.py index 2aa435e6..0178e219 100644 --- a/src/pantab/__init__.py +++ b/src/pantab/__init__.py @@ -1,4 +1,4 @@ -__version__ = "5.1.0rc0" +__version__ = "5.1.0rc1" from pantab._reader import frame_from_hyper, frame_from_hyper_query, frames_from_hyper