Skip to content

Commit 273c720

Browse files
authored
Correct version info got mixed up in bumpversion yesterday. Fixed. (#247)
1 parent 2da8061 commit 273c720

File tree

1 file changed

+9
-3
lines changed

1 file changed

+9
-3
lines changed

Lib/fontMath/__init__.py

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,15 @@
55
brilliant glyph math in RoboFab.
66
"""
77

8+
try:
9+
from ._version import __version__
10+
except ImportError:
11+
try:
12+
from setuptools_scm import get_version
13+
__version__ = get_version()
14+
except ImportError:
15+
__version__ = 'unknown'
16+
817
from fontMath.mathGlyph import MathGlyph
918
from fontMath.mathInfo import MathInfo
1019
from fontMath.mathKerning import MathKerning
11-
12-
13-
version = __version__ = "0.7.1.dev0"

0 commit comments

Comments
 (0)