diff --git a/portable_spreadsheet/__init__.py b/portable_spreadsheet/__init__.py index 27ea69a..eecf577 100644 --- a/portable_spreadsheet/__init__.py +++ b/portable_spreadsheet/__init__.py @@ -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" diff --git a/setup.py b/setup.py index 7eff011..6dd97da 100644 --- a/setup.py +++ b/setup.py @@ -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 diff --git a/tests/test_cell_word_constructor.py b/tests/test_cell_word_constructor.py index 6cd01bf..a334386 100644 --- a/tests/test_cell_word_constructor.py +++ b/tests/test_cell_word_constructor.py @@ -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):