Skip to content

Commit 4a0bc54

Browse files
committed
new isort again
1 parent 3f2f4db commit 4a0bc54

File tree

1 file changed

+1
-8
lines changed

1 file changed

+1
-8
lines changed

Makefile

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,11 @@ default:
66
tag:
77
# Make sure we're on the master branch
88
@if [ "$(shell git rev-parse --abbrev-ref HEAD)" != "master" ]; then exit 1; fi
9-
# @echo "Tagging v$(VERSION)..."
10-
# git tag v$(VERSION)
11-
# git push --tags
129
curl -H "Authorization: token `cat $(HOME)/.github-access-token`" -d '{"tag_name": "v$(VERSION)"}' https://api.github.com/repos/nschloe/tikzplotlib/releases
1310

1411
upload:
1512
@if [ "$(shell git rev-parse --abbrev-ref HEAD)" != "master" ]; then exit 1; fi
1613
rm -f dist/*
17-
# python3 setup.py sdist bdist_wheel
1814
# https://stackoverflow.com/a/58756491/353337
1915
python3 -m pep517.build --source --binary .
2016
twine upload dist/*
@@ -26,10 +22,7 @@ clean:
2622
@rm -rf *.egg-info/ build/ dist/ MANIFEST
2723

2824
format:
29-
isort -rc .
30-
black .
31-
32-
black:
25+
isort .
3326
black .
3427

3528
lint:

0 commit comments

Comments
 (0)