We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ea93117 commit 2d6aad3Copy full SHA for 2d6aad3
.gitignore
@@ -162,3 +162,6 @@ cython_debug/
162
.idea/
163
164
_build/
165
+
166
+# setuptools_scm-generated file
167
+src/genie_python/_version.py
pyproject.toml
@@ -119,5 +119,6 @@ reportUntypedClassDecorator = true
119
reportUntypedFunctionDecorator = true
120
121
[tool.setuptools_scm]
122
+version_file = "src/genie_python/_version.py"
123
124
[tool.build_sphinx]
src/genie_python/version.py
@@ -1 +1,6 @@
1
-VERSION = "0.0.0.qualifier"
+from genie_python._version import version
2
3
+__all__ = ["VERSION"]
4
5
+# Shim for backwards-compatibility. Version now auto-generated by setuptools_scm.
6
+VERSION = version
0 commit comments