Skip to content

Commit

Permalink
Merge pull request #2856 from jsiirola/finalize-6.6.1
Browse files Browse the repository at this point in the history
Finalize Pyomo 6.6.1
  • Loading branch information
mrmundt authored May 30, 2023
2 parents 28d39dc + 00d7b32 commit 3788135
Show file tree
Hide file tree
Showing 5 changed files with 28 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .coin-or/projDesc.xml
Original file line number Diff line number Diff line change
Expand Up @@ -227,8 +227,8 @@ Carl D. Laird, Chair, Pyomo Management Committee, claird at andrew dot cmu dot e
Use explicit overrides to disable use of automated
version reporting.
-->
<stableVersionNumber>6.6.0</stableVersionNumber>
<releaseNumber>6.6.0</releaseNumber>
<stableVersionNumber>6.6.1</stableVersionNumber>
<releaseNumber>6.6.1</releaseNumber>

</developmentStatus>

Expand Down
21 changes: 21 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,27 @@
Pyomo CHANGELOG
===============


-------------------------------------------------------------------------------
Pyomo 6.6.1 (30 May 2023)
-------------------------------------------------------------------------------

- General
- Update cmake builder for recent setuptools (#2847)
- Fixing minor formatting for 6.6.0 release changes (#2842)
- Silence deprecation warnings (#2854)
- Core
- Update indentation handling in `config.StringFormatter` (#2853)
- Restore slice API broken by #2829 (#2849)
- Resolve handling of {}**0 in `LinearRepn`/`QuadraticRepn` (#2857)
- Solver Interfaces
- NL writer: resolve error identifying vars in indexed SOS (#2852)
- Manage Gurobi environments in GurobiDirect (#2680)
- Contributed Packages
- cp: fix handling fixed BooleanVars in logical-to-disjunctive walker (#2850)
- FBBT: Fix typo when handling GeneralExpression objects (#2848)
- MindtPy: add support for cyipopt (#2830)

-------------------------------------------------------------------------------
Pyomo 6.6.0 (24 May 2023)
-------------------------------------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion RELEASE.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
We are pleased to announce the release of Pyomo 6.6.0.
We are pleased to announce the release of Pyomo 6.6.1.

Pyomo is a collection of Python software packages that supports a
diverse set of optimization capabilities for formulating and analyzing
Expand Down
4 changes: 2 additions & 2 deletions pyomo/version/info.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@
major = 6
minor = 6
micro = 1
releaselevel = 'invalid'
# releaselevel = 'final'
# releaselevel = 'invalid'
releaselevel = 'final'
serial = 0

if releaselevel == 'final':
Expand Down
5 changes: 2 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -264,9 +264,8 @@ def _print_deps(self, deplist):
# install on PyPy (binary wheels are not available), so we
# will only "require" them on other (CPython) platforms:
#
# DAE can use casadi; as of 1 Nov 22, casadi has not been
# released for Python 3.11
'casadi; implementation_name!="pypy" and python_version<"3.11"',
# DAE can use casadi
'casadi; implementation_name!="pypy"',
'numdifftools; implementation_name!="pypy"', # pynumero
'pandas; implementation_name!="pypy"',
'seaborn; implementation_name!="pypy"', # parmest.graphics
Expand Down

0 comments on commit 3788135

Please sign in to comment.