Skip to content

Commit

Permalink
Merge pull request matplotlib#29473 from tacaswell/ci/azure_py313
Browse files Browse the repository at this point in the history
CI: add py312 and py313 on windows on azure to test matrix
  • Loading branch information
timhoffm authored Jan 20, 2025
2 parents 265ee47 + 6ff92ec commit 06548d2
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
6 changes: 6 additions & 0 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,12 @@ stages:
Windows_py311:
vmImage: 'windows-latest'
python.version: '3.11'
Windows_py312:
vmImage: 'windows-latest'
python.version: '3.12'
Windows_py313:
vmImage: 'windows-latest'
python.version: '3.13'
maxParallel: 4
pool:
vmImage: '$(vmImage)'
Expand Down
2 changes: 1 addition & 1 deletion lib/matplotlib/tests/test_animation.py
Original file line number Diff line number Diff line change
Expand Up @@ -520,7 +520,7 @@ def test_disable_cache_warning(anim):

def test_movie_writer_invalid_path(anim):
if sys.platform == "win32":
match_str = r"\[WinError 3] .*'\\\\foo\\\\bar\\\\aardvark'"
match_str = r"\[WinError 3] .*\\\\foo\\\\bar\\\\aardvark'"
else:
match_str = r"\[Errno 2] .*'/foo"
with pytest.raises(FileNotFoundError, match=match_str):
Expand Down

0 comments on commit 06548d2

Please sign in to comment.