Skip to content

Commit f39d9d7

Browse files
committed
Update test infrastructure. Deprecate Python 2.7.
1 parent 83a3747 commit f39d9d7

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

.travis.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,17 @@
11
language: python
22
python:
3-
- "2.7"
43
- "3.6"
54
install:
65
- wget https://repo.continuum.io/miniconda/Miniconda-latest-Linux-x86_64.sh -O miniconda.sh;
76
- bash miniconda.sh -b -p $HOME/miniconda
87
- export PATH="$HOME/miniconda/bin:$PATH"
98
- hash -r
109
- conda config --set always_yes yes --set changeps1 no
11-
- conda config --add channels omnia
1210
- conda update -q conda
1311
- conda info -a
1412
- conda create -q -n test-environment python=$TRAVIS_PYTHON_VERSION pytest numpy
1513
- conda install ambertools=17 -n test-environment -c http://ambermd.org/downloads/ambertools/conda/
16-
- conda install vmd-python networkx psfgen -n test-environment -c conda-forge
14+
- conda install vmd-python networkx psfgen parmed -n test-environment -c conda-forge
1715
- source activate test-environment
1816
- export AMBERHOME="$HOME/miniconda/envs/test-environment"
1917
- python setup.py install

setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,8 @@ def run(self):
3232
install_requires=["numpy",
3333
"networkx>=1.11",
3434
"vmd-python>=2.0.4",
35-
"parmed"],
35+
"parmed",
36+
"psfgen"],
3637
entry_points={
3738
"console_scripts": [
3839
"dabble = dabble.__main__:main"

0 commit comments

Comments
 (0)