Skip to content

Commit

Permalink
Merge pull request #3278 from blnicho/finalize-release-6.7.3
Browse files Browse the repository at this point in the history
Finalize release 6.7.3
  • Loading branch information
blnicho authored May 29, 2024
2 parents 18e80b5 + 93e5dab commit 8a90b66
Show file tree
Hide file tree
Showing 6 changed files with 25 additions and 9 deletions.
4 changes: 2 additions & 2 deletions .coin-or/projDesc.xml
Original file line number Diff line number Diff line change
Expand Up @@ -227,8 +227,8 @@ Carl D. Laird, Chair, Pyomo Management Committee, claird at andrew dot cmu dot e
Use explicit overrides to disable use of automated
version reporting.
-->
<stableVersionNumber>6.7.2</stableVersionNumber>
<releaseNumber>6.7.2</releaseNumber>
<stableVersionNumber>6.7.3</stableVersionNumber>
<releaseNumber>6.7.3</releaseNumber>

</developmentStatus>

Expand Down
18 changes: 17 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,22 @@ Pyomo CHANGELOG
===============


-------------------------------------------------------------------------------
Pyomo 6.7.3 (29 May 2024)
-------------------------------------------------------------------------------

- Core
- Deprecate `pyomo.core.plugins.transform.model.to_standard_form()` (#3265)
- Reorder definitions to avoid `NameError` in some situations (#3264)
- Solver Interfaces
- NLv2: Fix linear presolver with constant defined vars/external fcns (#3276)
- Testing
- Add URL checking to GHA linting job (#3259, #3261)
- Skip Windows Python 3.8 conda GHA job (#3269)
- Contributed Packages
- DoE: Bug fixes for workshop (#3267)
- viewer: Update guard for pint import (#3277)

-------------------------------------------------------------------------------
Pyomo 6.7.2 (9 May 2024)
-------------------------------------------------------------------------------
Expand Down Expand Up @@ -57,7 +73,7 @@ Pyomo 6.7.2 (9 May 2024)
- CP: Add SequenceVar and other logical expressions for scheduling (#3227)
- DoE: Bug fixes (#3245)
- iis: Add minimal intractable system infeasibility diagnostics (#3172)
- incidence_analysis: Improve `solve_strongly_connected_components`
- incidence_analysis: Improve `solve_strongly_connected_components`
performance for models with named expressions (#3186)
- incidence_analysis: Add function to plot incidence graph in
Dulmage-Mendelsohn order (#3207)
Expand Down
2 changes: 1 addition & 1 deletion RELEASE.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
We are pleased to announce the release of Pyomo 6.7.2.
We are pleased to announce the release of Pyomo 6.7.3.

Pyomo is a collection of Python software packages that supports a
diverse set of optimization capabilities for formulating and analyzing
Expand Down
2 changes: 1 addition & 1 deletion pyomo/core/plugins/transform/model.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
@deprecated(
"to_standard_form() is deprecated. "
"Please use WriterFactory('compile_standard_form')",
version='6.7.3.dev0',
version='6.7.3',
remove_in='6.8.0',
)
def to_standard_form(self):
Expand Down
4 changes: 2 additions & 2 deletions pyomo/version/info.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@
major = 6
minor = 7
micro = 3
releaselevel = 'invalid'
# releaselevel = 'final'
# releaselevel = 'invalid'
releaselevel = 'final'
serial = 0

if releaselevel == 'final':
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -256,7 +256,7 @@ def __ne__(self, other):
'sphinx-toolbox>=2.16.0',
'sphinx-jinja2-compat>=0.1.1',
'enum_tools',
'numpy', # Needed by autodoc for pynumero
'numpy<2.0.0', # Needed by autodoc for pynumero
'scipy', # Needed by autodoc for pynumero
],
'optional': [
Expand All @@ -273,7 +273,7 @@ def __ne__(self, other):
# installed on python 3.8
'networkx<3.2; python_version<"3.9"',
'networkx; python_version>="3.9"',
'numpy',
'numpy<2.0.0',
'openpyxl', # dataportals
#'pathos', # requested for #963, but PR currently closed
'pint', # units
Expand Down

0 comments on commit 8a90b66

Please sign in to comment.