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 checkbox-ng/debian/control
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ Package: python3-checkbox-ng
Architecture: all
Depends: python3-importlib-metadata | python3 (>> 3.8),
python3-jinja2,
python3-filetype | python3 (<< 3.12),
python3-packaging,
python3-pkg-resources,
python3-psutil,
Expand Down
3 changes: 2 additions & 1 deletion checkbox-ng/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,8 @@
'Jinja2 >= 2.7',
'xlsxwriter',
'tqdm',
'importlib_metadata; python_version < "3.8"'
'importlib_metadata; python_version < "3.8"',
'filetype; python_version > "3.12"'
]
#test_suite='checkbox_ng.tests.test_suite'
license={"text" = "GPLv3"}
Expand Down
1 change: 1 addition & 0 deletions checkbox-ng/setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ install_requires=
xlsxwriter
tqdm
importlib_metadata; python_version < "3.8"
filetype; python_version > "3.12"
[upload_docs]
upload_dir=build/sphinx/html
[metadata]
Expand Down
Loading