https://forge.softwareheritage.org/source/swh-scheduler.git
Revision fccf9442fcddae509164f3c9be8055854d344700 authored by Antoine R. Dumont (@ardumont) on 12 December 2022, 13:05:46 UTC, committed by Antoine R. Dumont (@ardumont) on 02 January 2023, 09:21:57 UTC
Otherwise, at some point, this will get discarded as per the debian build
warning [1]

[1] https://jenkins.softwareheritage.org/view/swh-debian%20(draft)/job/debian/job/packages/job/DSCH/job/gbp-buildpackage/182/console
1 parent d521ab7
Raw File
Tip revision: fccf9442fcddae509164f3c9be8055854d344700 authored by Antoine R. Dumont (@ardumont) on 12 December 2022, 13:05:46 UTC
Add missing __init__.py so find_packages keep finding sql modules
Tip revision: fccf944
setup.cfg
[flake8]
# E203: whitespaces before ':' <https://github.com/psf/black/issues/315>
# E231: missing whitespace after ','
# E501: line too long, use B950 warning from flake8-bugbear instead
# W503: line break before binary operator <https://github.com/psf/black/issues/52>
select = C,E,F,W,B950
ignore = E203,E231,E501,W503
max-line-length = 88
back to top