File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 2525 strategy :
2626 matrix :
2727 os :
28- - " ubuntu-22 .04"
28+ - " ubuntu-24 .04"
2929 - " windows-2022"
30- - " macos-12 "
30+ - " macos-14 "
3131 python-version :
3232 - " 3.8"
3333 - " 3.9"
6161 env :
6262 COVERAGE_XML_PATH : ${{ runner.temp }}
6363 BABEL_TOX_EXTRA_DEPS : pytest-github-actions-annotate-failures
64- - uses : codecov/codecov-action@v4
64+ - uses : codecov/codecov-action@v5
6565 with :
6666 directory : ${{ runner.temp }}
6767 flags : ${{ matrix.os }}-${{ matrix.python-version }}
Original file line number Diff line number Diff line change 11repos :
22 - repo : https://github.com/astral-sh/ruff-pre-commit
3- rev : v0.5.1
3+ rev : v0.8.2
44 hooks :
55 - id : ruff
66 args :
77 - --fix
88 - repo : https://github.com/pre-commit/pre-commit-hooks
9- rev : v4.6 .0
9+ rev : v5.0 .0
1010 hooks :
1111 - id : check-added-large-files
1212 - id : check-docstring-first
Original file line number Diff line number Diff line change @@ -65,7 +65,7 @@ def setUp(self):
6565
6666 def assertEqualTypeToo (self , expected , result ):
6767 assert expected == result
68- assert type (expected ) == type (result ), f"instance types do not match: { type (expected )!r} !={ type (result )!r} "
68+ assert type (expected ) is type (result ), f"instance types do not match: { type (expected )!r} !={ type (result )!r} "
6969
7070 def test_pgettext (self ):
7171 self .assertEqualTypeToo ('Voh' , self .translations .gettext ('foo' ))
You can’t perform that action at this time.
0 commit comments