Skip to content

Commit ea6bc41

Browse files
committed
Merge remote-tracking branch 'upstream/main' into pre-commit-ci-update-config
2 parents 30c7863 + 3c71559 commit ea6bc41

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/test-windows.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ jobs:
8484
python3 -m pip install --upgrade pip
8585
8686
- name: Install CPython dependencies
87-
if: "!contains(matrix.python-version, 'pypy') && matrix.architecture != 'x86'"
87+
if: "!contains(matrix.python-version, 'pypy') && !contains(matrix.python-version, '3.14') && matrix.architecture != 'x86'"
8888
run: |
8989
python3 -m pip install PyQt6
9090

Tests/test_image_resample.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -462,7 +462,7 @@ def test_wrong_arguments(self, resample: Image.Resampling) -> None:
462462
im.resize((32, 32), resample, (20, 20, 20, 100))
463463
im.resize((32, 32), resample, (20, 20, 100, 20))
464464

465-
with pytest.raises(TypeError, match="must be sequence of length 4"):
465+
with pytest.raises(TypeError, match="must be (sequence|tuple) of length 4"):
466466
im.resize((32, 32), resample, (im.width, im.height)) # type: ignore[arg-type]
467467

468468
with pytest.raises(ValueError, match="can't be negative"):

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ def get_version() -> str:
4646
ZLIB_ROOT = None
4747
FUZZING_BUILD = "LIB_FUZZING_ENGINE" in os.environ
4848

49-
if sys.platform == "win32" and sys.version_info >= (3, 14):
49+
if sys.platform == "win32" and sys.version_info >= (3, 15):
5050
import atexit
5151

5252
atexit.register(

0 commit comments

Comments
 (0)