From 44fdf9703b124a158b776ba232d7f1c8e0bfcc8d Mon Sep 17 00:00:00 2001 From: mulhern Date: Wed, 22 Apr 2026 12:45:48 -0400 Subject: [PATCH 1/2] Reformat with black 25.1.0 Signed-off-by: mulhern --- src/into_dbus_python/_version.py | 4 ++-- tests/test_deterministic.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/into_dbus_python/_version.py b/src/into_dbus_python/_version.py index 2b36933..12756eb 100644 --- a/src/into_dbus_python/_version.py +++ b/src/into_dbus_python/_version.py @@ -12,9 +12,9 @@ # See the License for the specific language governing permissions and # limitations under the License. """ - Version information. +Version information. - .. moduleauthor:: mulhern +.. moduleauthor:: mulhern """ __version__ = "0.8.2" diff --git a/tests/test_deterministic.py b/tests/test_deterministic.py index 1fe4e75..301456a 100644 --- a/tests/test_deterministic.py +++ b/tests/test_deterministic.py @@ -66,7 +66,7 @@ def test_variant_depth(self): dbus.Array([dbus.Boolean(False)], signature="b", variant_level=2), ) self.assertEqual( - xformer("av")([([("v", ("b", False))])])[0], + xformer("av")([[("v", ("b", False))]])[0], dbus.Array([dbus.Boolean(False, variant_level=2)], signature="v"), ) self.assertEqual( From be2888d5cbce719a184fa782e001f983d06b95cb Mon Sep 17 00:00:00 2001 From: mulhern Date: Wed, 22 Apr 2026 12:35:24 -0400 Subject: [PATCH 2/2] Increase CURRENT DEVELOPMENT ENVIRONMENT to Fedora 43 Signed-off-by: mulhern --- .github/workflows/main.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index dd2141e..3e84135 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -44,7 +44,7 @@ jobs: - dependencies: python python3-build twine task: make -f Makefile package runs-on: ubuntu-latest - container: fedora:42 # CURRENT DEVELOPMENT ENVIRONMENT + container: fedora:43 # CURRENT DEVELOPMENT ENVIRONMENT steps: - uses: actions/checkout@v6 with: @@ -72,7 +72,7 @@ jobs: python3-hypothesis task: PYTHONPATH=./src make -f Makefile test runs-on: ubuntu-latest - container: fedora:42 # CURRENT DEVELOPMENT ENVIRONMENT + container: fedora:43 # CURRENT DEVELOPMENT ENVIRONMENT steps: - name: Install python3.12 run: >