Skip to content
Draft
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 Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ default-members = ["tidy-viewer-core", "tidy-viewer-cli"]
resolver = "2"

[workspace.package]
version = "1.8.93"
version = "1.8.94"
authors = ["alexhallam <[email protected]>"]
edition = "2021"
license = "Unlicense OR MIT"
Expand Down
2 changes: 1 addition & 1 deletion tidy-viewer-core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tidy-viewer-core"
version = "1.8.93"
version = "1.8.94"
authors = ["alexhallam <[email protected]>"]
edition = "2021"
license = "Unlicense OR MIT"
Expand Down
7 changes: 7 additions & 0 deletions tidy-viewer-py/MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
include Cargo.toml
include src/**/*.rs
include ../tidy-viewer-core/Cargo.toml
include ../tidy-viewer-core/src/**/*.rs
include README.md
include LICENSE
include UNLICENSE
4 changes: 2 additions & 2 deletions tidy-viewer-py/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "tidy-viewer-py"
version = "0.2.94"
version = "1.8.94"
description = "A cross-platform data pretty printer that uses column styling to maximize viewer enjoyment. Supports CSV, Parquet, Pandas, and Polars DataFrames."
readme = "README.md"
authors = [{ name = "Alex Hallam", email = "[email protected]" }]
Expand All @@ -25,7 +25,6 @@ classifiers = [
]
keywords = ["table", "formatting", "terminal", "pretty-print", "csv", "parquet"]
dependencies = [
"maturin>=1.9.3",
"pandas>=2.0.3",
"polars>=1.8.2",
"pyarrow>=17.0.0",
Expand Down Expand Up @@ -55,6 +54,7 @@ build-backend = "maturin"
python-source = "src"
module-name = "tidy_viewer_py._core"
features = ["pyo3/extension-module"]
manylinux = "2_17"

[tool.ruff]
line-length = 100
Expand Down
2 changes: 1 addition & 1 deletion tidy-viewer-py/src/tidy_viewer_py/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
RUST_AVAILABLE = False
_import_error = e

__version__ = "0.2.94"
__version__ = "1.8.94"
__all__ = [
"print_table", "print_csv", "print_parquet", "print_arrow", "print_dataframe",
"format_table", "format_csv", "format_parquet", "format_arrow", "format_dataframe",
Expand Down