Skip to content

Commit

Permalink
Travis
Browse files Browse the repository at this point in the history
  • Loading branch information
gmatteo committed Oct 15, 2019
1 parent c8e1efe commit fdf268b
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 6 deletions.
8 changes: 8 additions & 0 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
## Summary

Please write summary of major changes

* Feature 1
* Feature 2
* Fix 1
* Fix 2
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ before_script:
# This to run tests requiring a graphical user e.g. mayavi
# https://docs.travis-ci.com/user/gui-and-headless-browsers/#Using-xvfb-to-Run-Tests-That-Require-a-GUI
- "export DISPLAY=:99.0"
- "sh -e /etc/init.d/xvfb start"
#- "sh -e /etc/init.d/xvfb start"
- sleep 3 # give xvfb some time to start
# https://github.com/travis-ci/travis-ci/issues/6307
- if [[ "${TRAVIS_OS_NAME}" == "osx" ]]; then rvm get head || true; fi
Expand Down
6 changes: 3 additions & 3 deletions abipy/core/release.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

from collections import OrderedDict

# Name of the package for release purposes. This is the name which labels
# Name of the package for release purposes. This is the name which labels
# the tarballs and RPMs made by distutils, so it's best to lowercase it.
name = 'abipy'

Expand All @@ -12,8 +12,8 @@
_version_major = 0
_version_minor = 7
_version_micro = '0' # use '' for first of series, number for 1 and above
_version_extra = 'dev'
#_version_extra = '' # Uncomment this for full releases
#_version_extra = 'dev'
_version_extra = '' # Uncomment this for full releases

# Construct full version string from these.
_ver = [_version_major, _version_minor]
Expand Down
1 change: 0 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ tabulate
apscheduler==2.1.0
pydispatcher>=2.0.5
tqdm
html2text
pyyaml>=3.11
pandas
numpy
Expand Down
1 change: 0 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,6 @@ def cleanup():
"apscheduler==2.1.0",
"pydispatcher>=2.0.5",
"tqdm",
"html2text",
"pyyaml>=3.11",
"pandas",
"numpy",
Expand Down

0 comments on commit fdf268b

Please sign in to comment.