Skip to content

Commit

Permalink
release
Browse files Browse the repository at this point in the history
  • Loading branch information
fburic committed Jan 2, 2024
1 parent e9e2761 commit e36f6b7
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ It also depends exclusively on the Pandas package for minimal overhead.
* :ballot_box_with_check: Multi-merges (merge across multiple DataFrames at once)
* :ballot_box_with_check: `Collection` class to encapsulate and manage multiple DataFrames
* :ballot_box_with_check: DataFrame sanity checks
* :black_square_button: Support all types of joins (currently only inner join)
* :black_square_button: Datatype management (work in progress)


Expand Down
2 changes: 1 addition & 1 deletion grove/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = '0.1.3'
__version__ = '0.1.4'

from .grove import *
from .grove import _depth
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,15 @@ build-backend = "setuptools.build_meta"

[project]
name = "panda-grove"
version = "0.1.3"
version = "0.1.4"
dependencies = [
"pandas>=1.1.0"
]
requires-python = ">=3.7"
authors = [{ name="Filip Buric" }]
maintainers = [{ name="Filip Buric" }]
description = "A lightweight package for easier management of multiple Pandas DataFrames"
readme = {file = "README.txt", content-type = "text/markdown"}
readme = {file = "README.md", content-type = "text/markdown"}
license = {file = "LICENSE"}
classifiers = [
"Environment :: Console",
Expand All @@ -34,6 +34,6 @@ Issues = "https://github.com/fburic/panda-grove/issues"

[tool.setuptools.packages.find]
where = [""]
include = ["grove*", "README", "LICENSE"]
include = ["grove*", "README.md", "LICENSE"]
exclude = ["doc*", "test*"]
namespaces = false

0 comments on commit e36f6b7

Please sign in to comment.