Skip to content

Commit 8a90b66

Browse files
authored
Merge pull request #3278 from blnicho/finalize-release-6.7.3
Finalize release 6.7.3
2 parents 18e80b5 + 93e5dab commit 8a90b66

File tree

6 files changed

+25
-9
lines changed

6 files changed

+25
-9
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.7.2</stableVersionNumber>
231-
<releaseNumber>6.7.2</releaseNumber>
230+
<stableVersionNumber>6.7.3</stableVersionNumber>
231+
<releaseNumber>6.7.3</releaseNumber>
232232

233233
</developmentStatus>
234234

CHANGELOG.md

+17-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,22 @@ Pyomo CHANGELOG
22
===============
33

44

5+
-------------------------------------------------------------------------------
6+
Pyomo 6.7.3 (29 May 2024)
7+
-------------------------------------------------------------------------------
8+
9+
- Core
10+
- Deprecate `pyomo.core.plugins.transform.model.to_standard_form()` (#3265)
11+
- Reorder definitions to avoid `NameError` in some situations (#3264)
12+
- Solver Interfaces
13+
- NLv2: Fix linear presolver with constant defined vars/external fcns (#3276)
14+
- Testing
15+
- Add URL checking to GHA linting job (#3259, #3261)
16+
- Skip Windows Python 3.8 conda GHA job (#3269)
17+
- Contributed Packages
18+
- DoE: Bug fixes for workshop (#3267)
19+
- viewer: Update guard for pint import (#3277)
20+
521
-------------------------------------------------------------------------------
622
Pyomo 6.7.2 (9 May 2024)
723
-------------------------------------------------------------------------------
@@ -57,7 +73,7 @@ Pyomo 6.7.2 (9 May 2024)
5773
- CP: Add SequenceVar and other logical expressions for scheduling (#3227)
5874
- DoE: Bug fixes (#3245)
5975
- iis: Add minimal intractable system infeasibility diagnostics (#3172)
60-
- incidence_analysis: Improve `solve_strongly_connected_components`
76+
- incidence_analysis: Improve `solve_strongly_connected_components`
6177
performance for models with named expressions (#3186)
6278
- incidence_analysis: Add function to plot incidence graph in
6379
Dulmage-Mendelsohn order (#3207)

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.7.2.
1+
We are pleased to announce the release of Pyomo 6.7.3.
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/plugins/transform/model.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
@deprecated(
2525
"to_standard_form() is deprecated. "
2626
"Please use WriterFactory('compile_standard_form')",
27-
version='6.7.3.dev0',
27+
version='6.7.3',
2828
remove_in='6.8.0',
2929
)
3030
def to_standard_form(self):

pyomo/version/info.py

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

3434
if releaselevel == 'final':

setup.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -256,7 +256,7 @@ def __ne__(self, other):
256256
'sphinx-toolbox>=2.16.0',
257257
'sphinx-jinja2-compat>=0.1.1',
258258
'enum_tools',
259-
'numpy', # Needed by autodoc for pynumero
259+
'numpy<2.0.0', # Needed by autodoc for pynumero
260260
'scipy', # Needed by autodoc for pynumero
261261
],
262262
'optional': [
@@ -273,7 +273,7 @@ def __ne__(self, other):
273273
# installed on python 3.8
274274
'networkx<3.2; python_version<"3.9"',
275275
'networkx; python_version>="3.9"',
276-
'numpy',
276+
'numpy<2.0.0',
277277
'openpyxl', # dataportals
278278
#'pathos', # requested for #963, but PR currently closed
279279
'pint', # units

0 commit comments

Comments
 (0)