Skip to content

Commit d4373f9

Browse files
authored
Merge pull request #3712 from mrmundt/finalize-release
Finalize Pyomo for 6.9.4 release
2 parents 6edb983 + d7befd9 commit d4373f9

File tree

6 files changed

+37
-8
lines changed

6 files changed

+37
-8
lines changed

.coin-or/projDesc.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -226,8 +226,8 @@ Carl D. Laird, Chair, Pyomo Management Committee, claird at andrew dot cmu dot e
226226
Use explicit overrides to disable use of automated
227227
version reporting.
228228
-->
229-
<stableVersionNumber>6.9.3</stableVersionNumber>
230-
<releaseNumber>6.9.3</releaseNumber>
229+
<stableVersionNumber>6.9.4</stableVersionNumber>
230+
<releaseNumber>6.9.4</releaseNumber>
231231

232232
</developmentStatus>
233233

CHANGELOG.md

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,35 @@
11
Pyomo CHANGELOG
22
===============
33

4+
-------------------------------------------------------------------------------
5+
Pyomo 6.9.4 (27 Aug 2025)
6+
-------------------------------------------------------------------------------
7+
8+
- General
9+
- Cleanup `collections` module (#3708)
10+
- Work around environments where `IntEnum.__doc__` is None (#3711)
11+
- Standardize 'multiprocessing' deferred import (#3702)
12+
- Resolve `capture_output(capture_fd=True)` deadlock on Windows (#3679)
13+
- Core
14+
- Bugfix: standard form with fixed variables (#3704)
15+
- DAE
16+
- Fix simulator bug (#3692)
17+
- Solver Interfaces
18+
- Add reporting of SCIP node count to solver results (#3691)
19+
- Create API version attribute for different solver generations (#3699)
20+
- Ipopt_v2: update options processing (#3693)
21+
- Expanded LegacySolverWrapper fixes (#3700)
22+
- Testing
23+
- Update GAMS download to new "latest" link (#3706)
24+
- New TPL cache version on GHA workflows (#3705)
25+
- Contributed Packages
26+
- benders: Added support for HiGHS solver (#3686)
27+
- DoE: Add grey box objectives (#3606)
28+
- Parmest: Correct two very old test skips (#3697)
29+
- Parmest: Extend capability for weighted SSE objective (#3535)
30+
- PyROS: Modify two solver tests (#3694)
31+
- sensitivity_toolbox: Sensitivity calculation for named expressions (#3685)
32+
433
-------------------------------------------------------------------------------
534
Pyomo 6.9.3 (6 Aug 2025)
635
-------------------------------------------------------------------------------

RELEASE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
We are pleased to announce the release of Pyomo 6.9.3.
1+
We are pleased to announce the release of Pyomo 6.9.4.
22

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

doc/OnlineDocs/explanation/solvers/pyros.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -964,7 +964,7 @@ Observe that the log contains the following information:
964964
965965
==============================================================================
966966
PyROS: The Pyomo Robust Optimization Solver, v1.3.9.
967-
Pyomo version: 6.9.3dev0
967+
Pyomo version: 6.9.3
968968
Commit hash: unknown
969969
Invoked at UTC 2025-07-21T00:00:00.000000+00:00
970970

pyomo/contrib/pyros/config.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ def _deprecated_separation_priority_order(obj):
8383
"The argument 'separation_priority_order' is deprecated. "
8484
"Consider specifying separation priorities by declaring, on your "
8585
"model, Suffix components with local name `pyros_separation_priority`.",
86-
version="6.9.3dev0",
86+
version="6.9.3",
8787
)
8888
return separation_priority_order
8989

@@ -776,7 +776,7 @@ def pyros_config():
776776
until, within a group, constraint violations
777777
are detected.
778778
779-
*Deprecated since Pyomo 6.9.3dev0*: The argument
779+
*Deprecated since Pyomo 6.9.3*: The argument
780780
`separation_priority_order` is deprecated.
781781
Specify separation priorities by declaring, on your
782782
model, `Suffix` components with local name

pyomo/version/info.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@
2727
major = 6
2828
minor = 9
2929
micro = 4
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)