From a2d52eef82c217a6c736bd40c67c0f6cb14163dd Mon Sep 17 00:00:00 2001 From: Manoel Marques Date: Thu, 14 May 2020 12:41:33 -0400 Subject: [PATCH] Update Changelog for 0.7.1, bump numpy,scipy versions --- .travis.yml | 2 -- CHANGELOG.md | 5 ++++- requirements.txt | 4 ++-- setup.py | 4 ++-- 4 files changed, 8 insertions(+), 7 deletions(-) diff --git a/.travis.yml b/.travis.yml index 9414e10131..b5e75609c6 100644 --- a/.travis.yml +++ b/.travis.yml @@ -217,8 +217,6 @@ jobs: - sudo apt-get -y install libgfortran5 # Installing pyquante2 master branch... - pip install https://github.com/rpmuller/pyquante2/archive/master.zip --progress-bar off - # make sure it uses latest numpy, this will be removed later - - pip install -U numpy - pip install cplex before_script: - export PYTHON="coverage3 run --source qiskit/aqua,qiskit/chemistry,qiskit/finance,qiskit/ml,qiskit/optimization --omit */gauopen/* --parallel-mode" diff --git a/CHANGELOG.md b/CHANGELOG.md index 508d839475..0d6f4d8f62 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -15,9 +15,12 @@ Changelog](http://keepachangelog.com/en/1.0.0/). > - **Fixed**: for any bug fixes. > - **Security**: in case of vulnerabilities. -[UNRELEASED](https://github.com/Qiskit/qiskit-aqua/compare/0.7.0...HEAD) +[UNRELEASED](https://github.com/Qiskit/qiskit-aqua/compare/0.7.1...HEAD) ======================================================================== +[0.7.1](https://github.com/Qiskit/qiskit-aqua/compare/0.7.0...0.7.1) - 2020-05-14 +================================================================================= + Added ----- diff --git a/requirements.txt b/requirements.txt index d1eb39eeef..210ec59956 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,8 +1,8 @@ qiskit-terra>=0.14.0 qiskit-ignis>=0.2.0 -scipy>=1.0 +scipy>=1.4 sympy>=1.3 -numpy>=1.13 +numpy>=1.17 psutil>=5 scikit-learn>=0.20.0 dlx diff --git a/setup.py b/setup.py index 2570234c8f..d5223592db 100644 --- a/setup.py +++ b/setup.py @@ -28,9 +28,9 @@ requirements = [ "qiskit-terra>=0.14.0", "qiskit-ignis>=0.2.0", - "scipy>=1.0", + "scipy>=1.4", "sympy>=1.3", - "numpy>=1.13", + "numpy>=1.17", "psutil>=5", "scikit-learn>=0.20.0", "dlx",