diff --git a/README.md b/README.md index e26353d..c5c4144 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ Pure Python bindings for the pure C++11/OpenCL Qrack quantum computer simulator (**PyQrack** is just pure Qrack.) -**IMPORTANT**: You must build and install [unitaryfund/qrack](https://github.com/unitaryfund/qrack) to use this `main` branch. CI/CD builds wheels that contain pre-compiled Qrack binaries, and that is the form published on PyPi. **You must also install OpenCL.** +**IMPORTANT**: You must build and install [unitaryfund/qrack](https://github.com/unitaryfund/qrack) to build the `main` branch from source. CI/CD builds wheels that contain pre-compiled Qrack binaries, and that is the form published on PyPi. **You must also install OpenCL.** Import and instantiate [`QrackSimulator`](https://github.com/unitaryfund/pyqrack/blob/main/pyqrack/qrack_simulator.py) instances. This simulator can perform arbitrary single qubit and controlled-single-qubit gates, as well as other specific gates like `SWAP`. diff --git a/setup.py b/setup.py index a96c19c..c5a2bd7 100644 --- a/setup.py +++ b/setup.py @@ -4,7 +4,7 @@ from setuptools import setup -VERSION = "1.32.7" +VERSION = "1.32.8" # Read long description from README. README_PATH = os.path.join(os.path.abspath(os.path.dirname(__file__)), 'README.md')