Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci: Use VC toolset 14.41 for windows-2022 runners #62

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,17 +51,17 @@ jobs:
# Python 3.10
- python: '3.10'
builder: windows-2022
toolset: '14.39' # Visual Studio 2022
toolset: '14.41' # Visual Studio 2022
winsdk: '10.0.17763.0' # Windows 10 1809
# Python 3.11
- python: '3.11'
builder: windows-2022
toolset: '14.39' # Visual Studio 2022
toolset: '14.41' # Visual Studio 2022
winsdk: '10.0.17763.0' # Windows 10 1809
# Python 3.12
- python: '3.12'
builder: windows-2022
toolset: '14.39' # Visual Studio 2022
toolset: '14.41' # Visual Studio 2022
winsdk: '10.0.17763.0' # Windows 10 1809
arch:
- x86
Expand Down
2 changes: 1 addition & 1 deletion py310/_cursesmodule.c
Original file line number Diff line number Diff line change
Expand Up @@ -3569,7 +3569,7 @@ _curses_is_term_resized_impl(PyObject *module, int nlines, int ncols)
{
PyCursesInitialised;

return PyBool_FromLong(is_term_resized(nlines, ncols));
return PyBool_FromLong(is_term_resized());
}
#endif /* HAVE_CURSES_IS_TERM_RESIZED */

Expand Down
2 changes: 1 addition & 1 deletion py311/_cursesmodule.c
Original file line number Diff line number Diff line change
Expand Up @@ -3569,7 +3569,7 @@ _curses_is_term_resized_impl(PyObject *module, int nlines, int ncols)
{
PyCursesInitialised;

return PyBool_FromLong(is_term_resized(nlines, ncols));
return PyBool_FromLong(is_term_resized());
}
#endif /* HAVE_CURSES_IS_TERM_RESIZED */

Expand Down
2 changes: 1 addition & 1 deletion py312/_cursesmodule.c
Original file line number Diff line number Diff line change
Expand Up @@ -3569,7 +3569,7 @@ _curses_is_term_resized_impl(PyObject *module, int nlines, int ncols)
{
PyCursesInitialised;

return PyBool_FromLong(is_term_resized(nlines, ncols));
return PyBool_FromLong(is_term_resized());
}
#endif /* HAVE_CURSES_IS_TERM_RESIZED */

Expand Down
2 changes: 1 addition & 1 deletion py34/_cursesmodule.c
Original file line number Diff line number Diff line change
Expand Up @@ -2634,7 +2634,7 @@ PyCurses_Is_Term_Resized(PyObject *self, PyObject *args)

if (!PyArg_ParseTuple(args,"ii:is_term_resized", &lines, &columns))
return NULL;
result = is_term_resized(lines, columns);
result = is_term_resized();
if (result == TRUE) {
Py_RETURN_TRUE;
} else {
Expand Down
2 changes: 1 addition & 1 deletion py35/_cursesmodule.c
Original file line number Diff line number Diff line change
Expand Up @@ -2633,7 +2633,7 @@ PyCurses_Is_Term_Resized(PyObject *self, PyObject *args)

if (!PyArg_ParseTuple(args,"ii:is_term_resized", &lines, &columns))
return NULL;
result = is_term_resized(lines, columns);
result = is_term_resized();
if (result == TRUE) {
Py_RETURN_TRUE;
} else {
Expand Down
2 changes: 1 addition & 1 deletion py36/_cursesmodule.c
Original file line number Diff line number Diff line change
Expand Up @@ -2633,7 +2633,7 @@ PyCurses_Is_Term_Resized(PyObject *self, PyObject *args)

if (!PyArg_ParseTuple(args,"ii:is_term_resized", &lines, &columns))
return NULL;
result = is_term_resized(lines, columns);
result = is_term_resized();
if (result == TRUE) {
Py_RETURN_TRUE;
} else {
Expand Down
2 changes: 1 addition & 1 deletion py37/_cursesmodule.c
Original file line number Diff line number Diff line change
Expand Up @@ -2634,7 +2634,7 @@ PyCurses_Is_Term_Resized(PyObject *self, PyObject *args)

if (!PyArg_ParseTuple(args,"ii:is_term_resized", &lines, &columns))
return NULL;
result = is_term_resized(lines, columns);
result = is_term_resized();
if (result == TRUE) {
Py_RETURN_TRUE;
} else {
Expand Down
2 changes: 1 addition & 1 deletion py38/_cursesmodule.c
Original file line number Diff line number Diff line change
Expand Up @@ -3316,7 +3316,7 @@ _curses_is_term_resized_impl(PyObject *module, int nlines, int ncols)
{
PyCursesInitialised;

return PyBool_FromLong(is_term_resized(nlines, ncols));
return PyBool_FromLong(is_term_resized());
}
#endif /* HAVE_CURSES_IS_TERM_RESIZED */

Expand Down
2 changes: 1 addition & 1 deletion py39/_cursesmodule.c
Original file line number Diff line number Diff line change
Expand Up @@ -3420,7 +3420,7 @@ _curses_is_term_resized_impl(PyObject *module, int nlines, int ncols)
{
PyCursesInitialised;

return PyBool_FromLong(is_term_resized(nlines, ncols));
return PyBool_FromLong(is_term_resized());
}
#endif /* HAVE_CURSES_IS_TERM_RESIZED */

Expand Down