Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/develop' into develop
Browse files Browse the repository at this point in the history
# Conflicts:
#	Changelog
  • Loading branch information
Baguage committed Apr 26, 2018
2 parents df27bd7 + 307cac6 commit d324f53
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 5 deletions.
3 changes: 2 additions & 1 deletion .gitattribute
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
om_expand text eol=lf
om_expand text eol=lf
test.sh text eol=lf
6 changes: 2 additions & 4 deletions Changelog
Original file line number Diff line number Diff line change
@@ -1,12 +1,10 @@
=========
Changelog
=========
New
*

0.9.4 2018-04-24
* [*] Reverted changes made in 0.9.5
0.9.5 2018-04-14
* [*] Added six as a dependency
* [*] Reverted changes made in 0.9.4. Web interface needs a fix instead

0.9.4 2018-04-08
* [*] Fixed exception when survey timestamps are float (e.g. 730.0)
Expand Down
17 changes: 17 additions & 0 deletions test.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
#!/usr/bin/env bash

git update

# Python 2
mkvirtualenv om --python `which python2`
python setup.py test
python setup.py install
deactivate
rmvirtualenv om

# Python3
mkvirtualenv om --python `which python3`
python setup.py test
python setup.py install
deactivate
rmvirtualenv om

0 comments on commit d324f53

Please sign in to comment.