Skip to content

Commit 08b74aa

Browse files
authored
Merge pull request Pyomo#3706 from mrmundt/gams-latest
Update GAMS link to new "latest" link
2 parents b212b41 + 1ef32aa commit 08b74aa

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

.github/workflows/test_branches.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ env:
2323
PYTHON_CORE_PKGS: wheel
2424
PYPI_ONLY: z3-solver linear-tree
2525
PYPY_EXCLUDE: scipy numdifftools seaborn statsmodels linear-tree
26-
CACHE_VER: v250819.0
26+
CACHE_VER: v250820.0
2727
NEOS_EMAIL: tests@pyomo.org
2828
SRC_REF: ${{ github.head_ref || github.ref }}
2929
PYOMO_WORKFLOW: branch
@@ -539,7 +539,7 @@ jobs:
539539
Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append
540540
$INSTALLER = "${env:DOWNLOAD_DIR}/gams_install.exe"
541541
# Demo licenses are included for 5mo from the newest release
542-
$URL = "https://d37drm4t2jghv5.cloudfront.net/distributions/50.1.0"
542+
$URL = "https://d37drm4t2jghv5.cloudfront.net/distributions/latest"
543543
if ( "${{matrix.TARGET}}" -eq "win" ) {
544544
$URL = "$URL/windows/windows_x64_64.exe"
545545
} elseif ( "${{matrix.TARGET}}" -eq "osx" ) {

.github/workflows/test_pr_and_main.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ env:
3131
PYTHON_CORE_PKGS: wheel
3232
PYPI_ONLY: z3-solver linear-tree
3333
PYPY_EXCLUDE: scipy numdifftools seaborn statsmodels linear-tree
34-
CACHE_VER: v250819.0
34+
CACHE_VER: v250820.0
3535
NEOS_EMAIL: tests@pyomo.org
3636
SRC_REF: ${{ github.head_ref || github.ref }}
3737
PYOMO_WORKFLOW: |
@@ -591,7 +591,7 @@ jobs:
591591
Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append
592592
$INSTALLER = "${env:DOWNLOAD_DIR}/gams_install.exe"
593593
# Demo licenses are included for 5mo from the newest release
594-
$URL = "https://d37drm4t2jghv5.cloudfront.net/distributions/50.1.0"
594+
$URL = "https://d37drm4t2jghv5.cloudfront.net/distributions/latest"
595595
if ( "${{matrix.TARGET}}" -eq "win" ) {
596596
$URL = "$URL/windows/windows_x64_64.exe"
597597
} elseif ( "${{matrix.TARGET}}" -eq "osx" ) {

pyomo/common/tee.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -765,7 +765,8 @@ def open(self, mode="w", buffering=-1, encoding=None, newline=None):
765765
# Note that is it VERY important to close file handles in the
766766
# same thread that opens it. If you don't you can see deadlocks
767767
# and a peculiar error ("libgcc_s.so.1 must be installed for
768-
# pthread_cancel to work"; see https://bugs.python.org/issue18748)
768+
# pthread_cancel to work"; see
769+
# https://github.com/python/cpython/issues/62948)
769770
#
770771
# To accomplish this, we will keep two handle lists: one is the
771772
# set of "active" handles that the (merged reader) thread is

0 commit comments

Comments
 (0)