Skip to content

Commit

Permalink
Merge pull request #35 from david-salac/feature/nd-exports
Browse files Browse the repository at this point in the history
Test fixed
  • Loading branch information
david-salac authored Jan 19, 2021
2 parents 661c345 + 90081c7 commit 75dab22
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.1.2"
__version__ = "2.1.3"
__status__ = "Production"
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.1.2",
version="2.1.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
2 changes: 1 addition & 1 deletion tests/test_cell_word_constructor.py
Original file line number Diff line number Diff line change
Expand Up @@ -723,7 +723,7 @@ def test_cross_reference(self):
Cell.cross_reference(self.u_operand, sheet)
u_reference = Cell.cross_reference(self.a_operand, sheet)
u_ref_word = u_reference.parse
self.assertEqual(u_ref_word['excel'], "=" + "$'Results'.F5")
self.assertEqual(u_ref_word['excel'], "=" + "'Results'!F5")
self.assertEqual(u_ref_word['python_numpy'], "Results.values[3,4]")

def test_variable(self):
Expand Down

0 comments on commit 75dab22

Please sign in to comment.