From 60fce4a2239fda9c319377eba4f92217257c33ad Mon Sep 17 00:00:00 2001 From: "Kevin J. Sung" Date: Wed, 18 Oct 2023 19:00:33 -0500 Subject: [PATCH] pin requirements --- pyproject.toml | 31 ++++++++++++++++++------------- 1 file changed, 18 insertions(+), 13 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index b0f36c475..7e41996c2 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -13,7 +13,12 @@ classifiers = [ "Programming Language :: Rust", "Programming Language :: Python :: Implementation :: CPython", ] -dependencies = ["numpy", "opt_einsum>=3.3", "pyscf>=2.3.0", "scipy"] +dependencies = [ + "numpy==1.26.0", + "opt_einsum==3.3.0", + "pyscf==2.3.0", + "scipy==1.11.2", +] [project.urls] Homepage = "https://github.com/qiskit-community/ffsim" @@ -21,18 +26,18 @@ Documentation = "https://qiskit-community.github.io/ffsim/" [project.optional-dependencies] dev = [ - "black[jupyter]", - "coverage", - "jupyter-sphinx", - "maturin", - "mypy", - "nbmake", - "nbsphinx", - "pytest", - "ruff", - "sphinx", - "sphinx-autodoc-typehints", - "tox", + "black[jupyter]==23.9.1", + "coverage==7.3.1", + "jupyter-sphinx==0.4.0", + "maturin==1.2.3", + "mypy==1.5.1", + "nbmake==1.4.3", + "nbsphinx==0.9.3", + "pytest==7.4.2", + "ruff==0.0.290", + "sphinx==7.2.6", + "sphinx-autodoc-typehints==1.24.0", + "tox==4.11.3", ] [tool.maturin]