Skip to content

Commit c4acc3c

Browse files
committed
Finalizing the 6.4.1 release
1 parent 87e3ad4 commit c4acc3c

File tree

6 files changed

+13
-18
lines changed

6 files changed

+13
-18
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.4.0</stableVersionNumber>
231-
<releaseNumber>6.4.0</releaseNumber>
230+
<stableVersionNumber>6.4.1</stableVersionNumber>
231+
<releaseNumber>6.4.1</releaseNumber>
232232

233233
</developmentStatus>
234234

CHANGELOG.txt

+5-9
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Pyomo 6.4.1 13 May 2022
88

99
- General
1010
- Extend linux distribution map logic (#2361)
11-
- Improve string processing in ConfigList, ConfigDict and ListOf (#2360)
11+
- Improve string processing in ConfigList, ConfigDict, and ListOf (#2360)
1212
- Update copyright assertion (#2368, #2378)
1313
- Deprecate name_buffer argument to getname (#2370)
1414
- Defer construction of the main Pyomo parser (#2385)
@@ -29,20 +29,16 @@ Pyomo 6.4.1 13 May 2022
2929
- DAE Updates
3030
- Fix typo preventing a DAE test from running (#2349)
3131
- Contributed Packages
32-
- APPSI: Move initialization of inf to support Windows (#2383)
33-
- APPSI: Support auto-linked binary variables (#2386)
34-
- APPSI: Supress cplex output when checking availability (#2389)
35-
- APPSI: Remove requirement for C++ extensions if not needed (#2391)
36-
- APPSI: Improve handling of fixed binary vars in Appsi NL writer (#2388)
37-
- APPSI: Add tests for named expressions (#2392)
32+
- APPSI: Minor improvements and generalizations (#2383, #2386, #2389,
33+
#2391, #2388, #2392)
3834
- incidence_analysis: Add option to ignore inequality constraints in
3935
IncidenceGraphInterface (#2350)
4036
- MC++: Update interface tests (#2400)
4137
- MindtPy: Add quadratic_strategy option to pass quadratic constraints
4238
or objectives to MIP solvers (#2338)
4339
- Parmest: Skip tests when seaborn and matplotlib are missing (#2394)
44-
- PyROS: Modify master feasibility problem (#2353)
45-
- PyROS: Fix model objective validation (#2371)
40+
- PyROS: Improve feasibility problem formulation, objective validation
41+
(#2353, #2371)
4642

4743
-------------------------------------------------------------------------------
4844
Pyomo 6.4.0 16 Mar 2022

README.md

+1-2
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,6 @@ subproblems using Python parallel communication libraries.
4343
* [Download](http://www.pyomo.org/installation/)
4444
* [Documentation](http://www.pyomo.org/documentation/)
4545
* [Performance Plots](https://software.sandia.gov/downloads/pub/pyomo/performance/index.html)
46-
* [Blog](http://www.pyomo.org/blog/)
4746

4847
Pyomo was formerly released as the Coopr software library.
4948

@@ -52,7 +51,7 @@ Pyomo is available under the BSD License, see the LICENSE.txt file.
5251
Pyomo is currently tested with the following Python implementations:
5352

5453
* CPython: 3.7, 3.8, 3.9, 3.10
55-
* PyPy: 3
54+
* PyPy: 3.7, 3.8, 3.9
5655

5756
### Installation
5857

RELEASE.txt

+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.4.0.
1+
We are pleased to announce the release of Pyomo 6.4.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/core/base/label.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ def __call__(self, obj=None):
106106

107107
@deprecated("The 'remove_obj' method is no longer "
108108
"necessary now that 'getname' does not "
109-
"support the use of a name buffer", version="TBD")
109+
"support the use of a name buffer", version="6.4.1")
110110
def remove_obj(self, obj):
111111
pass
112112
#
@@ -129,7 +129,7 @@ def __call__(self, obj):
129129

130130
@deprecated("The 'remove_obj' method is no longer "
131131
"necessary now that 'getname' does not "
132-
"support the use of a name buffer", version="TBD")
132+
"support the use of a name buffer", version="6.4.1")
133133
def remove_obj(self, obj):
134134
pass
135135

pyomo/version/info.py

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

3434
if releaselevel == 'final':

0 commit comments

Comments
 (0)