Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Advance current development environment to Fedora 41 #297

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,16 +32,16 @@ jobs:
python3-justbytes
python3-gobject
python3-psutil
image: fedora:40 # CURRENT DEVELOPMENT ENVIRONMENT
image: fedora:41 # CURRENT DEVELOPMENT ENVIRONMENT
task: PYTHONPATH=./src make -f Makefile lint
- dependencies: >
black
python3-isort
image: fedora:40 # CURRENT DEVELOPMENT ENVIRONMENT
image: fedora:41 # CURRENT DEVELOPMENT ENVIRONMENT
task: make -f Makefile fmt-travis
# VERIFICATION OF TEST INFRASTRUCTURE
- dependencies: yamllint
image: fedora:40 # CURRENT DEVELOPMENT ENVIRONMENT
image: fedora:41 # CURRENT DEVELOPMENT ENVIRONMENT
task: make -f Makefile yamllint
runs-on: ubuntu-latest
container: ${{ matrix.image }}
Expand Down
6 changes: 3 additions & 3 deletions scripts/monitor_dbus_signals.py
Original file line number Diff line number Diff line change
Expand Up @@ -475,7 +475,7 @@ class DifferentProperty(Diff): # pylint: disable=too-few-public-methods

def __init__(
self, object_path, interface_name, key, old_value, new_value
): # pylint: disable=too-many-arguments
): # pylint: disable=too-many-positional-arguments,too-many-arguments
self.object_path = object_path
self.interface_name = interface_name
self.key = key
Expand All @@ -496,7 +496,7 @@ class NotInvalidatedProperty(Diff): # pylint: disable=too-few-public-methods

def __init__(
self, object_path, interface_name, key, old_value, new_value
): # pylint: disable=too-many-arguments
): # pylint: disable=too-many-positional-arguments,too-many-arguments
self.object_path = object_path
self.interface_name = interface_name
self.key = key
Expand All @@ -518,7 +518,7 @@ class ChangedProperty(Diff): # pylint: disable=too-few-public-methods

def __init__(
self, object_path, interface_name, key, old_value, new_value
): # pylint: disable=too-many-arguments
): # pylint: disable=too-many-positional-arguments,too-many-arguments
self.object_path = object_path
self.interface_name = interface_name
self.key = key
Expand Down
2 changes: 1 addition & 1 deletion stratisd_cert.py
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ def tearDown(self):

def _unittest_set_property(
self, object_path, param_iface, dbus_param, dbus_value, exception_name
): # pylint: disable=too-many-arguments
): # pylint: disable=too-many-positional-arguments,too-many-arguments
"""
:param object_path: path to the object
:param param_iface: D-Bus interface to use for parameter
Expand Down
Loading