Skip to content

Commit a01783b

Browse files
committed
Add __version__
1 parent b70c95e commit a01783b

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

src/flint/__init__.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,3 @@
11
from ._flint import *
2+
3+
__version__ = '0.4.0'

test/test.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,9 @@ def raises(f, exception):
2929
"""
3030

3131
def test_pyflint():
32+
33+
assert flint.__version__ == "0.4.0"
34+
3235
ctx = flint.ctx
3336
assert str(ctx) == repr(ctx) == _default_ctx_string
3437
assert ctx.prec == 53

0 commit comments

Comments
 (0)