Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
ift
NIFTy
Commits
25f1b320
Commit
25f1b320
authored
Aug 03, 2018
by
Lukas Platz
Browse files
make 'ift.version.gitversion' work in the absense of git tags
parent
a3b2f458
Changes
1
Hide whitespace changes
Inline
Side-by-side
setup.py
View file @
25f1b320
...
...
@@ -21,7 +21,7 @@ from setuptools import find_packages, setup
def
write_version
():
import
subprocess
p
=
subprocess
.
Popen
([
"git"
,
"describe"
,
"--dirty"
,
"--tags"
],
p
=
subprocess
.
Popen
([
"git"
,
"describe"
,
"--dirty"
,
"--tags"
,
"--always"
],
stdout
=
subprocess
.
PIPE
)
res
=
p
.
communicate
()[
0
].
strip
().
decode
(
'utf-8'
)
with
open
(
"nifty5/git_version.py"
,
"w"
)
as
file
:
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment