From 7bfb8c21b1178a861334a3d921b631749abcf5aa Mon Sep 17 00:00:00 2001 From: Martin Wendt Date: Sun, 29 Oct 2023 16:36:38 +0100 Subject: [PATCH] Update black to 23.10 --- Pipfile | 2 +- tests/test_core.py | 1 - tests/test_diff.py | 1 - tox.ini | 2 +- 4 files changed, 2 insertions(+), 4 deletions(-) diff --git a/Pipfile b/Pipfile index 4908a51..f804c3a 100644 --- a/Pipfile +++ b/Pipfile @@ -4,7 +4,7 @@ verify_ssl = true name = "pypi" [dev-packages] -black = { version = "~=22.12", extras = ["jupyter"] } +black = { version = "~=23.10", extras = ["jupyter"] } isort = "*" pylint = "*" # TODO: remove this line: diff --git a/tests/test_core.py b/tests/test_core.py index c133deb..a2abd54 100644 --- a/tests/test_core.py +++ b/tests/test_core.py @@ -855,7 +855,6 @@ def test_tree_copy(self): assert subtree._self_check() def test_node_copy_to(self): - tree_1 = fixture.create_tree() tree_2 = _make_tree_2() diff --git a/tests/test_diff.py b/tests/test_diff.py index 0457fa8..dcedb9f 100644 --- a/tests/test_diff.py +++ b/tests/test_diff.py @@ -9,7 +9,6 @@ class TestDiff: def test_diff(self): - tree_0 = fixture.create_tree(name="T0", print=True) tree_1 = fixture.create_tree(name="T1", print=False) diff --git a/tox.ini b/tox.ini index b8d5910..bb206c2 100644 --- a/tox.ini +++ b/tox.ini @@ -66,7 +66,7 @@ commands = description = Check Black formatting, isort compliance, and flake8 ; skip_install = true deps = - black[jupyter] ~=22.12 + black[jupyter] ~=23.10 isort {[testenv:lint]deps} changedir = {toxinidir}