This is an automated email from the ASF dual-hosted git repository.
akm pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/mahout.git
The following commit(s) were added to refs/heads/main by this push:
new bb373a5fd Boosting required python version for poetry
bb373a5fd is described below
commit bb373a5fd61a5d35dd8d3a09c5f167a6fb18df5b
Author: Andrew Musselman <[email protected]>
AuthorDate: Mon Feb 26 13:56:42 2024 -0800
Boosting required python version for poetry
---
README.md | 6 ++++++
pyproject.toml | 2 +-
2 files changed, 7 insertions(+), 1 deletion(-)
diff --git a/README.md b/README.md
index 69eab6a07..1390b7777 100644
--- a/README.md
+++ b/README.md
@@ -30,5 +30,11 @@ QuMat is a POC of a high level Python library for intefacing
with multiple quant
Check out [basic gates](docs/basic_gates.md) for a quick introduction to the
basic gates which are basically all that exist right now (and even those only
exist for `qiskit`).
+## Getting started
+
+To install dependencies, run the following:
+`$ pip install -U poetry`
+`$ poetry install`
+
#### Legal
Please see the `NOTICE.txt` included in this directory for more information.
diff --git a/pyproject.toml b/pyproject.toml
index 0f0750f43..e9a3c1a55 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -7,7 +7,7 @@ license = "MIT"
readme = "README.md"
[tool.poetry.dependencies]
-python = "^3.7"
+python = "^3.8"
qiskit = "^0.45.1"
qiskit-aer = "^0.13.2"