From ad874873dcdb976dd30be8aaf741027b6152f500 Mon Sep 17 00:00:00 2001 From: Keith Beattie Date: Fri, 4 Jun 2021 13:37:55 -0700 Subject: [PATCH] 1.10.0 final release with pyomo 6.0.1 --- idaes/ver.py | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/idaes/ver.py b/idaes/ver.py index 4ecc6a679f..3acd295f51 100644 --- a/idaes/ver.py +++ b/idaes/ver.py @@ -192,7 +192,7 @@ def git_hash(): pass #: Package's version as an object -package_version = Version(1, 10, 0, "candidate", 1, gh) +package_version = Version(1, 10, 0, "final", 0, gh) #: Package's version as a simple string __version__ = str(package_version) diff --git a/setup.py b/setup.py index 60c04bd517..9914583e77 100644 --- a/setup.py +++ b/setup.py @@ -34,7 +34,7 @@ def rglob(path, glob): DEPENDENCIES_FOR_PRERELEASE_VERSION = [ - "pyomo>=6.0", + "pyomo>=6.0.1", ]