Skip to content

Commit bb9ee83

Browse files
authored
Merge pull request #24 from nexB/latest-sctk
Use the latest sctk Signed-off-by: Philippe Ombredanne <[email protected]>
2 parents aa16788 + 17ccfdb commit bb9ee83

9 files changed

+1825
-636
lines changed

CHANGELOG.rst

+8-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,14 @@ Changelog
22
=========
33

44

5-
v0.0.0
5+
v0.6.0
6+
------
7+
8+
- Use latest ScanCode toolkit packagedcode including the ability to collect
9+
extra index URLs from requirements.txt
10+
11+
12+
v0.5.0
613
------
714

815
Initial release.

Makefile

+4-4
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,11 @@ dev:
1818

1919
isort:
2020
@echo "-> Apply isort changes to ensure proper imports ordering"
21-
${VENV}/bin/isort --sl -l 100 src tests
21+
${VENV}/bin/isort --sl -l 100 src tests setup.py --skip-glob "*/_packagedcode/*"
2222

2323
black:
2424
@echo "-> Apply black code formatter"
25-
${VENV}/bin/black -l 100 src tests
25+
${VENV}/bin/black -l 100 src tests setup.py --exclude "_packagedcode/.*"
2626

2727
doc8:
2828
@echo "-> Run doc8 validation"
@@ -35,9 +35,9 @@ check:
3535
@${ACTIVATE} pycodestyle --max-line-length=110 \
3636
--exclude=.eggs,etc/scripts,src/_packagedcode,venv,lib,thirdparty,docs .
3737
@echo "-> Run isort imports ordering validation"
38-
@${ACTIVATE} isort --sl --check-only -l 100 src tests
38+
@${ACTIVATE} isort --sl --check-only -l 100 setup.py src tests --skip-glob "*/_packagedcode/*"
3939
@echo "-> Run black validation"
40-
@${ACTIVATE} black --check -l 100
40+
@${ACTIVATE} black --check -l 100 src tests setup.py --exclude "_packagedcode/.*"
4141

4242
clean:
4343
@echo "-> Clean the Python env"

0 commit comments

Comments
 (0)