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 #110

Merged
merged 5 commits into from
Dec 23, 2024
Merged
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
13 changes: 7 additions & 6 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,17 @@ jobs:
task: make -f Makefile fmt-travis
- dependencies: yamllint
task: make -f Makefile yamllint
- dependencies: pylint python3-into-dbus-python
- dependencies: pylint python3-into-dbus-python python3-setuptools
task: PYTHONPATH=./src make -f Makefile lint
- dependencies: python3-into-dbus-python
- dependencies: python3-into-dbus-python python3-setuptools
task: PYTHONPATH=./src make -f Makefile test
- dependencies: python3-coverage python3-into-dbus-python
- dependencies: >
python3-coverage
python3-into-dbus-python
python3-setuptools
task: PYTHONPATH=./src make -f Makefile coverage
runs-on: ubuntu-latest
container: fedora:40 # CURRENT DEVELOPMENT ENVIRONMENT
container: fedora:41 # CURRENT DEVELOPMENT ENVIRONMENT
steps:
- uses: actions/checkout@v4
- name: Install dependencies
Expand All @@ -42,8 +45,6 @@ jobs:
strategy:
matrix:
include:
- dependencies: pylint python3-into-dbus-python
task: PYTHONPATH=./src make -f Makefile lint
- dependencies: python3-into-dbus-python
task: PYTHONPATH=./src make -f Makefile test
- dependencies: python-setuptools python3-into-dbus-python
Expand Down
33 changes: 0 additions & 33 deletions .github/workflows/weekly.yml

This file was deleted.

2 changes: 1 addition & 1 deletion src/dbus_python_client_gen/_errors.py
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ def __init__(
method_name,
expected,
actual,
): # pylint: disable=too-many-arguments
): # pylint: disable=too-many-arguments, too-many-positional-arguments
"""
Initialize a DPClientKeywordError with the mismatched arguments.

Expand Down
Loading