Skip to content

Commit 3788135

Browse files
authored
Merge pull request #2856 from jsiirola/finalize-6.6.1
Finalize Pyomo 6.6.1
2 parents 28d39dc + 00d7b32 commit 3788135

File tree

5 files changed

+28
-8
lines changed

5 files changed

+28
-8
lines changed

.coin-or/projDesc.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -227,8 +227,8 @@ Carl D. Laird, Chair, Pyomo Management Committee, claird at andrew dot cmu dot e
227227
Use explicit overrides to disable use of automated
228228
version reporting.
229229
-->
230-
<stableVersionNumber>6.6.0</stableVersionNumber>
231-
<releaseNumber>6.6.0</releaseNumber>
230+
<stableVersionNumber>6.6.1</stableVersionNumber>
231+
<releaseNumber>6.6.1</releaseNumber>
232232

233233
</developmentStatus>
234234

CHANGELOG.md

+21
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,27 @@
11
Pyomo CHANGELOG
22
===============
33

4+
5+
-------------------------------------------------------------------------------
6+
Pyomo 6.6.1 (30 May 2023)
7+
-------------------------------------------------------------------------------
8+
9+
- General
10+
- Update cmake builder for recent setuptools (#2847)
11+
- Fixing minor formatting for 6.6.0 release changes (#2842)
12+
- Silence deprecation warnings (#2854)
13+
- Core
14+
- Update indentation handling in `config.StringFormatter` (#2853)
15+
- Restore slice API broken by #2829 (#2849)
16+
- Resolve handling of {}**0 in `LinearRepn`/`QuadraticRepn` (#2857)
17+
- Solver Interfaces
18+
- NL writer: resolve error identifying vars in indexed SOS (#2852)
19+
- Manage Gurobi environments in GurobiDirect (#2680)
20+
- Contributed Packages
21+
- cp: fix handling fixed BooleanVars in logical-to-disjunctive walker (#2850)
22+
- FBBT: Fix typo when handling GeneralExpression objects (#2848)
23+
- MindtPy: add support for cyipopt (#2830)
24+
425
-------------------------------------------------------------------------------
526
Pyomo 6.6.0 (24 May 2023)
627
-------------------------------------------------------------------------------

RELEASE.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
We are pleased to announce the release of Pyomo 6.6.0.
1+
We are pleased to announce the release of Pyomo 6.6.1.
22

33
Pyomo is a collection of Python software packages that supports a
44
diverse set of optimization capabilities for formulating and analyzing

pyomo/version/info.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@
2727
major = 6
2828
minor = 6
2929
micro = 1
30-
releaselevel = 'invalid'
31-
# releaselevel = 'final'
30+
# releaselevel = 'invalid'
31+
releaselevel = 'final'
3232
serial = 0
3333

3434
if releaselevel == 'final':

setup.py

+2-3
Original file line numberDiff line numberDiff line change
@@ -264,9 +264,8 @@ def _print_deps(self, deplist):
264264
# install on PyPy (binary wheels are not available), so we
265265
# will only "require" them on other (CPython) platforms:
266266
#
267-
# DAE can use casadi; as of 1 Nov 22, casadi has not been
268-
# released for Python 3.11
269-
'casadi; implementation_name!="pypy" and python_version<"3.11"',
267+
# DAE can use casadi
268+
'casadi; implementation_name!="pypy"',
270269
'numdifftools; implementation_name!="pypy"', # pynumero
271270
'pandas; implementation_name!="pypy"',
272271
'seaborn; implementation_name!="pypy"', # parmest.graphics

0 commit comments

Comments
 (0)