Skip to content

Commit 93e5dab

Browse files
committed
Finalizing 6.7.3 release files
1 parent f12825e commit 93e5dab

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
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

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/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)