We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2da8061 commit 273c720Copy full SHA for 273c720
Lib/fontMath/__init__.py
@@ -5,9 +5,15 @@
5
brilliant glyph math in RoboFab.
6
"""
7
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
+
17
from fontMath.mathGlyph import MathGlyph
18
from fontMath.mathInfo import MathInfo
19
from fontMath.mathKerning import MathKerning
-
-version = __version__ = "0.7.1.dev0"
0 commit comments