Skip to content

Commit b0967c6

Browse files
authored
Merge pull request #2662 from blnicho/finalize-release-6.4.4
Finalize Pyomo release 6.4.4
2 parents 5be0da4 + 5fd8f15 commit b0967c6

File tree

4 files changed

+37
-6
lines changed

4 files changed

+37
-6
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.3</stableVersionNumber>
231-
<releaseNumber>6.4.3</releaseNumber>
230+
<stableVersionNumber>6.4.4</stableVersionNumber>
231+
<releaseNumber>6.4.4</releaseNumber>
232232

233233
</developmentStatus>
234234

CHANGELOG.md

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

4+
-------------------------------------------------------------------------------
5+
Pyomo 6.4.4 (9 Dec 2022)
6+
-------------------------------------------------------------------------------
7+
8+
- General
9+
- Convert `txt` to `md` files (`CHANGELOG`, `LICENSE`, `RELEASE`) (#2635)
10+
- Parallelize build of manylinux wheels (#2636)
11+
- Update source for Jenkins status badge (#2639, #2640)
12+
- Update relocated_module_attribute to work with cythonized modules (#2644)
13+
- Add utility methods to HierarchicalTimer (#2651)
14+
- Core
15+
- Fix preservation of stale flags through clone/pickle (#2633)
16+
- Add support for local suffixes in scaling transformation (#2619)
17+
- Solver Interfaces
18+
- Fix handling of nonconvex MIQCP problems in Xpress (#2625)
19+
- Testing
20+
- Update GitHub actions to cancel jobs when new changes are pushed (#2634)
21+
- Remove requirement for a `pyutilib` directory in Jenkins driver (#2637)
22+
- Enable GitHub actions build on Windows Python 3.11 (#2638)
23+
- Add build services infrastructure status badge (#2646)
24+
- Add version upper bound on MOSEK warmstart test skip (#2649)
25+
- Improve compare.py handling of nosetests/pytest output (#2661)
26+
- GDP
27+
- Add option to use multiple-bigm only on bound constraints (#2624)
28+
- Add logical_to_disjunctive and replace uses of logical_to_linear (#2627)
29+
- Contributed Packages
30+
- FBBT: Fix bug with ExternalFunction expressions (#2657)
31+
- PyROS: Fix uncertain param bounds evaluation for FactorModelSet (#2620)
32+
- PyROS: Add origin attribute to BudgetSet (#2645)
33+
- PyROS: Fix UncertaintySet.bounding_problem method (#2659)
34+
435
-------------------------------------------------------------------------------
536
Pyomo 6.4.3 (28 Nov 2022)
637
-------------------------------------------------------------------------------

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.4.3.
1+
We are pleased to announce the release of Pyomo 6.4.4.
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

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

3434
if releaselevel == 'final':
@@ -40,7 +40,7 @@
4040
if __file__.endswith('setup.py'):
4141
# This file is being sources (exec'ed) from setup.py.
4242
# dirname(__file__) setup.py's scope is the root sourec directory
43-
_rootdir = os.path.dirname(__file__)
43+
_rootdir = dirname(__file__)
4444
else:
4545
# Eventually this should import PYOMO_ROOT_DIR from
4646
# pyomo.common instead of reimplementing that logic here.

0 commit comments

Comments
 (0)