Add Pyomo 6.7.2 (#44097)

This commit is contained in:
Miranda Mundt 2024-05-18 09:31:57 -06:00 committed by GitHub
parent 36af1c1c73
commit 1ac2ee8043
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -18,6 +18,7 @@ class PyPyomo(PythonPackage):
# Maintainer accurate as of 2024-02-21 # Maintainer accurate as of 2024-02-21
maintainers("mrmundt") maintainers("mrmundt")
version("6.7.2", sha256="53bef766854f7607ca1fcfe3f218594ab382f137a275cee3d925d2b2f96876bf")
version("6.7.1", sha256="735b66c45937f1caa43f073d8218a4918b6de658914a699397d38d5b8c219a40") version("6.7.1", sha256="735b66c45937f1caa43f073d8218a4918b6de658914a699397d38d5b8c219a40")
version("6.7.0", sha256="a245ec609ef2fd907269f0b8e0923f74d5bf868b2ec0e62bf2a30b3f253bd17b") version("6.7.0", sha256="a245ec609ef2fd907269f0b8e0923f74d5bf868b2ec0e62bf2a30b3f253bd17b")
version("6.6.2", sha256="c8ad55213ff8b1a2c4e469110db8079722d5a6f364c6c46a42e2f750fc9e4d26") version("6.6.2", sha256="c8ad55213ff8b1a2c4e469110db8079722d5a6f364c6c46a42e2f750fc9e4d26")
@ -94,7 +95,8 @@ class PyPyomo(PythonPackage):
depends_on("py-sphinx-toolbox@2.16:", when="@6.7.1:+docs", type=("run")) depends_on("py-sphinx-toolbox@2.16:", when="@6.7.1:+docs", type=("run"))
depends_on("py-sphinx-jinja2-compat@0.1.1:", when="@6.7.1:+docs", type=("run")) depends_on("py-sphinx-jinja2-compat@0.1.1:", when="@6.7.1:+docs", type=("run"))
depends_on("py-enum-tools", when="@6.7.1:+docs", type=("run")) depends_on("py-enum-tools", when="@6.7.1:+docs", type=("run"))
depends_on("py-numpy", when="@6.1:+docs", type=("run")) # Pyomo does not support NumPy2 (May 9, 2024)
depends_on("py-numpy@1", when="@6.1:+docs", type=("run"))
depends_on("py-scipy", when="@6.4.2:+docs", type=("run")) depends_on("py-scipy", when="@6.4.2:+docs", type=("run"))
# when optional is requested # when optional is requested
@ -102,7 +104,8 @@ class PyPyomo(PythonPackage):
depends_on("py-ipython", when="@6.1:+optional", type=("run")) depends_on("py-ipython", when="@6.1:+optional", type=("run"))
depends_on("py-matplotlib@:3.6.0,3.6.2:", when="@6.1:+optional", type=("run")) depends_on("py-matplotlib@:3.6.0,3.6.2:", when="@6.1:+optional", type=("run"))
depends_on("py-networkx", when="@6.1:+optional", type=("run")) depends_on("py-networkx", when="@6.1:+optional", type=("run"))
depends_on("py-numpy", when="@6.1:+optional", type=("run")) # Pyomo does not support NumPy2 (May 9, 2024)
depends_on("py-numpy@1", when="@6.1:+optional", type=("run"))
depends_on("py-openpyxl", when="@6.1:+optional", type=("run")) depends_on("py-openpyxl", when="@6.1:+optional", type=("run"))
depends_on("py-pint", when="@6.1:+optional", type=("run")) depends_on("py-pint", when="@6.1:+optional", type=("run"))
depends_on("py-plotly", when="@6.6:+optional", type=("run")) depends_on("py-plotly", when="@6.6:+optional", type=("run"))