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
9 changes: 8 additions & 1 deletion CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,14 @@ Changelog
=========


v0.0.0
v0.6.0
------

- Use latest ScanCode toolkit packagedcode including the ability to collect
extra index URLs from requirements.txt


v0.5.0
------

Initial release.
8 changes: 4 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,11 @@ dev:

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

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

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

clean:
@echo "-> Clean the Python env"
Expand Down
Loading