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
1 change: 1 addition & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ probert (0.0.21) UNRELEASED; urgency=medium

* Add probert-firmware to probe information about the firmware.
* Stop leaning on modules implemented in C, use pyroute2 instead.
* Drop tests and tests data from .deb packages

-- Olivier Gayot <olivier.gayot@canonical.com> Tue, 02 Jul 2024 15:55:59 +0200

Expand Down
3 changes: 0 additions & 3 deletions debian/probert-common.install
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,4 @@ usr/lib/python3.*/dist-packages/probert-*.egg-info/top_level.txt
usr/lib/python3.*/dist-packages/probert/__init__.py
usr/lib/python3.*/dist-packages/probert/log.py
usr/lib/python3.*/dist-packages/probert/prober.py
usr/lib/python3.*/dist-packages/probert/tests/__init__.py
usr/lib/python3.*/dist-packages/probert/tests/data/*
usr/lib/python3.*/dist-packages/probert/tests/*.py
usr/lib/python3.*/dist-packages/probert/utils.py
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
url='https://github.com/canonical/probert',
license="GPLv3",
scripts=['bin/probert'],
packages=find_packages(),
packages=find_packages(exclude=["probert.tests*"]),
install_requires=['jsonschema', 'pyudev'],
include_package_data=True,
include_package_data=False,
)