From 112641d5f74f525e809ec81f292e9c360cf2846b Mon Sep 17 00:00:00 2001 From: MariusWirtz Date: Thu, 1 Feb 2024 21:32:54 +0100 Subject: [PATCH] Fix #1053 and release 2.0.1 --- TM1py/Utils/Utils.py | 2 +- TM1py/__init__.py | 2 +- docs/conf.py | 4 ++-- setup.py | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/TM1py/Utils/Utils.py b/TM1py/Utils/Utils.py index ddf55aa3..9cf09caa 100644 --- a/TM1py/Utils/Utils.py +++ b/TM1py/Utils/Utils.py @@ -538,7 +538,7 @@ def build_dataframe_from_csv(raw_csv, sep='~', shaped: bool = False, fillna_numeric_attributes_value: Any = 0, fillna_string_attributes: bool = False, fillna_string_attributes_value: Any = '', - attribute_types_by_dimension: Dict[str, Dict[str, str]] | None = None, + attribute_types_by_dimension: Dict[str, Dict[str, str]] = None, **kwargs) -> 'pd.DataFrame': if not raw_csv: return pd.DataFrame() diff --git a/TM1py/__init__.py b/TM1py/__init__.py index 4e6f977b..af6de22b 100644 --- a/TM1py/__init__.py +++ b/TM1py/__init__.py @@ -74,4 +74,4 @@ from TM1py.Utils import Utils -__version__ = "2.0" +__version__ = "2.0.1" diff --git a/docs/conf.py b/docs/conf.py index c7896ef3..534f133a 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -59,9 +59,9 @@ # built documents. # # The short X.Y version. -version = '2.0' +version = '2.0.1' # The full version, including alpha/beta/rc tags. -release = '2.0' +release = '2.0.1' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/setup.py b/setup.py index a612b577..08fdf97f 100644 --- a/setup.py +++ b/setup.py @@ -1,6 +1,6 @@ from setuptools import setup -SCHEDULE_VERSION = '2.0' +SCHEDULE_VERSION = '2.0.1' SCHEDULE_DOWNLOAD_URL = ( 'https://github.com/Cubewise-code/TM1py/tarball/' + SCHEDULE_VERSION )