Skip to content

Commit ed4461f

Browse files
committed
fix broken builds
1 parent e3f12d2 commit ed4461f

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

.travis.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ sudo: false
33

44
os:
55
- linux
6-
# - osx
6+
- osx
77

88
install:
99
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then export OS=MacOSX; else export OS=Linux; fi
@@ -15,8 +15,7 @@ install:
1515
- conda update -y conda python
1616
- conda info -a
1717
- conda install conda-build anaconda-client constructor git
18-
- git describe --tags
19-
- conda build -c terhorst -c bioconda conda --debug
18+
- conda build -c terhorst -c bioconda conda
2019
- conda build -c terhorst -c bioconda conda --output | tee .packages
2120
- conda/template.py conda/construct.tpl $VERSION > conda/construct.yaml
2221

conda/meta.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package:
22
name: smcpp
3-
version: {{ GIT_DESCRIBE_TAG.lstrip('v') }}
3+
version: {{ environ.get('GIT_DESCRIBE_TAG', 'default').lstrip('v') }}
44

55
build:
66
number: {{ GIT_DESCRIBE_NUMBER }}

0 commit comments

Comments
 (0)