Skip to content

Commit

Permalink
bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
leonelcamara committed Jan 5, 2021
1 parent b7d61b4 commit 792c90c
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 4 deletions.
4 changes: 4 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# hotxlfp changelog

## 0.0.8

* Fix bug with accented charactes in criteria

## 0.0.7

* Fixed a bug with criteria evaluation in formulas such as COUNTIF
Expand Down
8 changes: 5 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,14 @@

setup(
name='hotxlfp',
version='0.0.7',
version='0.0.8',
packages=['hotxlfp', 'hotxlfp._compat', 'hotxlfp._compat.py3', 'hotxlfp.helper', 'hotxlfp.formulas', 'hotxlfp.grammarparser'],
license='MIT',
test_suite='tests',
author='Leonel Câmara',
author_email='[email protected]',
url='https://github.com/aidhound/hotxlfp',
download_url='https://github.com/aidhound/hotxlfp/archive/0.0.7.tar.gz',
download_url='https://github.com/aidhound/hotxlfp/archive/0.0.8.tar.gz',
keywords=['excel', 'formula', 'parser'],
install_requires=['ply', 'python-dateutil'],
long_description='\n'.join(l for l in open('README.md', encoding="utf-8").readlines() if not l.startswith('[!')),
Expand All @@ -22,7 +22,9 @@
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7'
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9'
]
)

Expand Down
2 changes: 1 addition & 1 deletion tests/test_statistical.py
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ def test_countif(self):
ret = p.parse('COUNTIF({"foo bar";"baz"};"foo bar")')
self.assertEqual(ret['result'], 1)
self.assertEqual(ret['error'], None)
ret = p.parse('COUNTIF({"foo bar";"áà ãâä"};"áà ãâä")')
ret = p.parse('COUNTIF("áà ãâä"; "áà ãâä")')
self.assertEqual(ret['result'], 1)
self.assertEqual(ret['error'], None)

Expand Down

0 comments on commit 792c90c

Please sign in to comment.