Skip to content

Commit 6e6f0f9

Browse files
WillAydjdufresne
authored andcommitted
Added __version__ dunder
1 parent 71b15b4 commit 6e6f0f9

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

xlrd/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
)
1414
from .book import Book, colname
1515
from .formula import * # is constrained by __all__
16-
from .info import __VERSION__
16+
from .info import __VERSION__, __version__
1717
from .sheet import empty_cell
1818
from .xldate import XLDateError, xldate_as_datetime, xldate_as_tuple
1919
from .xlsx import X12Book

xlrd/info.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__VERSION__ = "1.1.0"
1+
__version__ = __VERSION__ = "1.1.0"

0 commit comments

Comments
 (0)