Skip to content

Commit 4a9f55c

Browse files
authored
Merge pull request #78 from dwhswenson/py312
SPEC0/NEP29: Add Python 3.12, drop Python 3.9
2 parents 5dc52b5 + 7ec200a commit 4a9f55c

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/test-suite.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,12 +24,12 @@ jobs:
2424
strategy:
2525
matrix:
2626
CONDA_PY:
27+
- "3.12"
2728
- "3.11"
2829
- "3.10"
29-
- "3.9"
3030
INTEGRATIONS: [""]
3131
include:
32-
- CONDA_PY: "3.11"
32+
- CONDA_PY: "3.12"
3333
INTEGRATIONS: 'all-optionals'
3434

3535
steps:

paths_cli/tests/compiling/test_root_compiler.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -247,8 +247,8 @@ def test_register_plugins_unit(foo_compiler_plugin, foo_baz_builder_plugin):
247247
with patch(BASE + "_register_builder_plugin", Mock()) as builder, \
248248
patch(BASE + "_register_compiler_plugin", Mock()) as compiler:
249249
register_plugins([foo_baz_builder_plugin, foo_compiler_plugin])
250-
assert builder.called_once_with(foo_baz_builder_plugin)
251-
assert compiler.called_once_with(foo_compiler_plugin)
250+
builder.assert_called_once_with(foo_baz_builder_plugin)
251+
compiler.assert_called_once_with(foo_compiler_plugin)
252252

253253

254254
def test_register_plugins_integration(foo_compiler_plugin,

paths_cli/tests/wizard/test_plugin_classes.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ def test_call(self):
3838
with mock.patch(patch_loc, mock_load):
3939
result = loader(wiz)
4040

41-
assert mock_load.called_once_with(wiz, "foos", "foo")
41+
mock_load.assert_called_once_with(wiz, "foos", "foo")
4242
assert result == "some_object"
4343

4444

0 commit comments

Comments
 (0)