From 2e626c8201eaa7c6657e09862eb143d1978a0d52 Mon Sep 17 00:00:00 2001 From: Thierry Loron Date: Fri, 18 Oct 2024 14:17:02 +0200 Subject: [PATCH] chore: add missing files --- pyproject.toml | 4 ++-- shapash/__version__.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 4c7e6b4e..4e5f0791 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "shapash" -version = "2.7.2" +version = "2.7.3" authors = [ {name = "Yann Golhen"}, {name = "Sebastien Bidault"}, @@ -93,7 +93,7 @@ where = ["."] [tool.setuptools.package-data] -"*" = ["*.csv", "*json", "*.yml", "*.css", "*.js", "*.png", "*.ico"] +"*" = ["*.*"] [tool.pytest.ini_options] pythonpath = ["."] diff --git a/shapash/__version__.py b/shapash/__version__.py index 01723d8e..e0c1ac5a 100644 --- a/shapash/__version__.py +++ b/shapash/__version__.py @@ -1,3 +1,3 @@ -VERSION = (2, 7, 1) +VERSION = (2, 7, 3) __version__ = ".".join(map(str, VERSION))