Skip to content

Commit

Permalink
Merge pull request #32 from david-salac/feature/nd-exports
Browse files Browse the repository at this point in the history
Bugfix
  • Loading branch information
david-salac authored Jan 10, 2021
2 parents 20dd4dc + b75b14b commit aa27731
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion portable_spreadsheet/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@
from .grammar_utils import GrammarUtils # noqa
from .skipped_label import SkippedLabel # noqa

__version__ = "2.0.2"
__version__ = "2.0.3"
__status__ = "Production"
2 changes: 1 addition & 1 deletion portable_spreadsheet/serialization.py
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ def _excel_write_variables_to_sheet(workbook: object,
for var_n, var_v in var_set.get_variables_dict(True).items():
# Format the variable style
try:
style_var = var_v.excel_format
style_var = var_v['cell'].excel_format
variable_style = workbook.add_format(style_var)
except KeyError:
variable_style = None
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setuptools.setup(
name="portable-spreadsheet",
version="2.0.2",
version="2.0.3",
author="David Salac",
author_email="info@davidsalac.eu",
description="A simple spreadsheet that keeps tracks of each operation of each cell in defined languages. Logic allows exporting sheets to Excel files (and see how each cell is computed), to the JSON strings with a description of computation of each cell (e. g. in the native language). Other formats, like HTML, CSV and Markdown (MD), are also implemented (user can define own format). It also allows reconstructing behaviours in native Python with NumPy.", # noqa
Expand Down

0 comments on commit aa27731

Please sign in to comment.