Skip to content

Commit

Permalink
Limiting the scancode toolkit version <= 31 (#18)
Browse files Browse the repository at this point in the history
* limiting the scancode toolkit version

Signed-off-by: Christian Henkel <[email protected]>

* pycodestyle

Signed-off-by: Christian Henkel <[email protected]>

* cron job to detect these things in future

Signed-off-by: Christian Henkel <[email protected]>

---------

Signed-off-by: Christian Henkel <[email protected]>
  • Loading branch information
ct2034 authored Jul 12, 2023
1 parent 16280a7 commit b78cdc4
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
3 changes: 3 additions & 0 deletions .github/workflows/pytest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ on:
branches: [main]
pull_request:
branches: [main]
schedule:
# Runs every tuesday at 07:00 UTC
- cron: "0 7 * * 2"

# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
Expand Down
5 changes: 4 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,10 @@ def read(fname):
install_requires=[
'gitpython',
'rospkg',
'scancode-toolkit',
# TODO v32 changes things, see
# https://github.com/nexB/scancode-toolkit/blob/develop/
# CHANGELOG.rst#v3200---2023-05-23
'scancode-toolkit<=31.2.6',
'spdx-tools'
],
package_dir={"": "src"},
Expand Down

0 comments on commit b78cdc4

Please sign in to comment.