Skip to content

Commit

Permalink
Avoid using QuTiP 4.4.0 on Travis/Appveyor
Browse files Browse the repository at this point in the history
All problems introduced in QuTiP 4.4 were worked around, except for
qutip/qutip#1047

A fix to qutip/qutip#1047 was merged into
QuTiP's master, so presumably the problem will disappear with the next
release of QuTiP.

This commit specifically excludes QuTiP 4.4.0 from being installed on
Travis and AppVeyor. We do not exclude that version in the list of
dependencies in setupy.py, because the issue is mostly cosmetic
(although it will fail tests). The average user should be OK using
krotov with QuTiP 4.4.0

Closes #49
  • Loading branch information
goerz committed Aug 3, 2019
1 parent b76a342 commit fcd692a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .appveyor.yml
Expand Up @@ -16,7 +16,7 @@ install:
- echo CONDA_PREFIX %CONDA_PREFIX%
- echo PATH %PATH%
- conda config --append channels conda-forge
- conda install qutip
- conda install qutip>=4.0,!=4.4.0
- pip install .[dev]
- pip freeze

Expand Down
2 changes: 1 addition & 1 deletion .travis.yml
Expand Up @@ -16,7 +16,7 @@ install:
- conda create -q -n test_env python=$TRAVIS_PYTHON_VERSION
- conda activate test_env
- conda config --append channels conda-forge
- conda install qutip
- conda install qutip>=4.0,!=4.4.0
# we must use an editable install, otherwise coveralls won't work
- PIP_USE_PEP517=false pip install -e .[dev]
- pip install coveralls
Expand Down

0 comments on commit fcd692a

Please sign in to comment.