Skip to content
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
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@ on:

jobs:
call_ci:
uses: EffectiveRange/ci-workflows/.github/workflows/python-ci.yaml@v4
uses: EffectiveRange/ci-workflows/.github/workflows/python-ci.yaml@latest-python
16 changes: 16 additions & 0 deletions deps.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
{
"deps": [
{
"name": "dbus",
"hostinstall": true
},
{
"name": "libdbus-1-dev",
"hostinstall": true
},
{
"name": "libdbus-glib-1-dev",
"hostinstall": true
}
]
}
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ strict = True
ignore_missing_imports = True

[flake8]
exclude = build,dist
exclude = build,dist,.eggs,*.egg-info
max-line-length = 120
max-complexity = 10
count = True
Expand Down
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,13 @@

setup(
name='python-systemd-dbus',
version='1.5.1',
description='Python dbus interface library for systemd',
author='Ferenc Nandor Janky & Attila Gombos',
author_email='info@effective-range.com',
packages=['systemd_dbus'],
package_data={'systemd_dbus': ['py.typed']},
use_scm_version=True,
setup_requires=["setuptools_scm"],
install_requires=['dbus-python',
'python-context-logger@git+https://github.com/EffectiveRange/python-context-logger.git@latest']
)
Loading