Thanks to visit codestin.com Credit goes to github.com
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 a382319 commit 238de49Copy full SHA for 238de49
.gitignore
@@ -80,3 +80,4 @@ setup.cfg
80
.coverage
81
.coverage.*
82
cover/
83
+__conda_version__.txt
setup.py
@@ -57,6 +57,9 @@
57
import versioneer
58
__version__ = versioneer.get_version()
59
60
+# For conda builds...
61
+with open("__conda_version__.txt", "w") as f:
62
+ f.write(__version__)
63
64
# These are the packages in the order we want to display them. This
65
# list may contain strings to create section headers for the display.
0 commit comments