Skip to content

Commit

Permalink
Fix #1053 and release 2.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
MariusWirtz committed Feb 1, 2024
1 parent e3bc795 commit 112641d
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion TM1py/Utils/Utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down
2 changes: 1 addition & 1 deletion TM1py/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,4 +74,4 @@

from TM1py.Utils import Utils

__version__ = "2.0"
__version__ = "2.0.1"
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -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
)
Expand Down

0 comments on commit 112641d

Please sign in to comment.