Skip to content

Commit

Permalink
Merge pull request #402 from atilag/stable-0.3.2
Browse files Browse the repository at this point in the history
Stable 0.3.2
  • Loading branch information
atilag authored Oct 17, 2019
2 parents 2b7f65c + 252b996 commit e180e4a
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 14 deletions.
23 changes: 20 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,28 @@ Changelog](http://keepachangelog.com/en/1.0.0/).
> - **Fixed**: for any bug fixes.
> - **Security**: in case of vulnerabilities.
[UNRELEASED](https://github.com/Qiskit/qiskit-aer/compare/0.3.0...HEAD)
[UNRELEASED](https://github.com/Qiskit/qiskit-aer/compare/0.3.1...HEAD)
=======================================================================

Added
-----

Changed
-------

Removed
-------

Fixed
-----
- Fix sdist to always attempt to build (\#401)



[0.3.1](https://github.com/Qiskit/qiskit-aer/compare/0.3.0...0.3.1) - 2019-10-15
===============================================================================


Added
-----
- Added tests for the Fredkin gate (#357)
Expand All @@ -40,8 +59,6 @@ Changed
- Update device noise model to use gate_length (\#352)
- Refactoring code and introducing floating point comparison func (\#338)



Removed
-------

Expand Down
2 changes: 1 addition & 1 deletion qiskit/providers/aer/VERSION.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.3.1
0.3.2
16 changes: 6 additions & 10 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,15 +1,10 @@
import os
try:
from skbuild import setup
dummy_install = False
except:
print(""" WARNING
=======
scikit-build package is needed to build Aer sources.
Please, install scikit-build and reinstall Aer:
pip install -I qiskit-aer """)
from setuptools import setup
dummy_install = True
except ImportError:
import subprocess
subprocess.call([sys.executable, '-m', 'pip', 'install', 'scikit-build'])
from skbuild import setup
from setuptools import find_packages

requirements = [
Expand All @@ -36,7 +31,7 @@ def find_qiskit_aer_packages():
setup(
name='qiskit-aer',
version=VERSION,
packages=find_qiskit_aer_packages() if not dummy_install else [],
packages=find_qiskit_aer_packages(),
cmake_source_dir='.',
description="Qiskit Aer - High performance simulators for Qiskit",
url="https://github.com/Qiskit/qiskit-aer",
Expand All @@ -57,6 +52,7 @@ def find_qiskit_aer_packages():
"Topic :: Scientific/Engineering",
],
install_requires=requirements,
setup_requires=['scikit-build', 'cmake', 'Cython'],
include_package_data=True,
cmake_args=["-DCMAKE_OSX_DEPLOYMENT_TARGET:STRING=10.9"],
keywords="qiskit aer simulator quantum addon backend",
Expand Down

0 comments on commit e180e4a

Please sign in to comment.