diff options
Diffstat (limited to 'astropy-helpers')
-rw-r--r-- | astropy-helpers/astropy-helpers.ini | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/astropy-helpers/astropy-helpers.ini b/astropy-helpers/astropy-helpers.ini index 5c651bf..6bed0f6 100644 --- a/astropy-helpers/astropy-helpers.ini +++ b/astropy-helpers/astropy-helpers.ini @@ -1,6 +1,6 @@ [package] name: astropy-helpers -version: 1.0.2.git +version: {{ environ.get("GIT_DESCRIBE_TAG", "0.0") }}.git [about] home: http://github.com/astropy/${package:name} @@ -14,7 +14,7 @@ readme: README.rst git_url: ${about:home} [build] -number: 1 +number: {{ environ.get("GIT_DESCRIBE_NUMBER", 0) }} [requirements] build: @@ -28,8 +28,8 @@ run: [cbc_build] linux: - python setup.py install || exit 1 - + python setup.py install || exit 1 + windows: python setup.py install |