Skip to content

Commit 7c42cec

Browse files
authored
Merge pull request Pyomo#2344 from blnicho/finalize-release-6.3.1
Finalize Pyomo 6.4.0 release
2 parents a0a8c38 + fb6c6e6 commit 7c42cec

File tree

5 files changed

+38
-9
lines changed

5 files changed

+38
-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.3.0</stableVersionNumber>
231-
<releaseNumber>6.3.0</releaseNumber>
230+
<stableVersionNumber>6.4.0</stableVersionNumber>
231+
<releaseNumber>6.4.0</releaseNumber>
232232

233233
</developmentStatus>
234234

CHANGELOG.txt

+28
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,34 @@
22
Pyomo CHANGELOG
33
===============
44

5+
-------------------------------------------------------------------------------
6+
Pyomo 6.4.0 16 Mar 2022
7+
-------------------------------------------------------------------------------
8+
9+
- General
10+
- Distribute the ampl_function_demo C source / cmake files (#2319)
11+
- Add GitHub URL to setup.py for PyPI (#2325)
12+
- Use constant indentation for long lines in the HierarchicalTimer (#2336)
13+
- Core
14+
- Remove incomplete pyomo/core/base/alias.py module (#2284)
15+
- Remove Python 3.6 support (#2312)
16+
- Solver Interfaces
17+
- Remove PICO solver interface (#2341)
18+
- Testing
19+
- Add Windows pip single test (#2334)
20+
- Fix test docstrings in piecewise to silence warnings (#2342)
21+
- Contributed Packages
22+
- APPSI: Update Gurobi solver unavailable message (#2320)
23+
- APPSI: Remove distributables for Windows (#2326)
24+
- APPSI: Fix bugs when working with the Gurobi solution pool (#2335)
25+
- APPSI: Fix bug in persistent update for FBBT (#2340)
26+
- Preprocessing: Stop using polynomial_degree to check for linear and
27+
constant expressions (#2324)
28+
- PyNumero: Improve coverage of mpi block matrix tests (#2318)
29+
- PyNumero: Skip bound/domain validation in ExternalPyomoModel (#2323)
30+
- PyNumero: Remove deprecated useage of numpy.bool (#2339)
31+
- PyROS: Fix variable default initialization (#2331)
32+
533
-------------------------------------------------------------------------------
634
Pyomo 6.3.0 23 Feb 2022
735
-------------------------------------------------------------------------------

RELEASE.txt

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
We are pleased to announce the release of Pyomo 6.3.0.
1+
We are pleased to announce the release of Pyomo 6.4.0.
22

33
Pyomo is a collection of Python software packages that supports a
44
diverse set of optimization capabilities for formulating and analyzing
@@ -10,6 +10,7 @@ The following are highlights of the 6.0 release series:
1010
- Integration of Boolean variables into GDP
1111
- Integration of NumPy support into the Pyomo expression system
1212
- Added support for Python 3.10
13+
- Removed support for Python 3.6
1314
- New packages:
1415
- APPSI (Auto-Persistent Pyomo Solver Interfaces)
1516
- External grey box models

pyomo/version/info.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,10 @@
2424
# should generally be left at 0, unless a downstream package is tracking
2525
# main and needs a hard reference to "suitably new" development.
2626
major=6
27-
minor=3
28-
micro=1
29-
releaselevel='invalid'
30-
#releaselevel='final'
27+
minor=4
28+
micro=0
29+
#releaselevel='invalid'
30+
releaselevel='final'
3131
serial=0
3232

3333
if releaselevel == 'final':

setup.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ def get_version():
6666
raise RuntimeError("Cython is only supported under CPython")
6767
from Cython.Build import cythonize
6868
#
69-
# Note: The Cython developers recommend that you destribute C source
69+
# Note: The Cython developers recommend that you distribute C source
7070
# files to users. But this is fine for evaluating the utility of Cython
7171
#
7272
import shutil
@@ -174,7 +174,7 @@ def _print_deps(self, deplist):
174174
maintainer_email = '[email protected]',
175175
url = 'http://pyomo.org',
176176
project_urls = {
177-
'Documentation': 'https://pyomo.readthedocs.io/en/stable/',
177+
'Documentation': 'https://pyomo.readthedocs.io/',
178178
'Source': 'https://github.com/Pyomo/pyomo',
179179
},
180180
license = 'BSD',

0 commit comments

Comments
 (0)