File tree Expand file tree Collapse file tree 1 file changed +1
-8
lines changed
Expand file tree Collapse file tree 1 file changed +1
-8
lines changed Original file line number Diff line number Diff line change @@ -6,15 +6,11 @@ default:
66tag :
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
1411upload :
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
2824format :
29- isort -rc .
30- black .
31-
32- black :
25+ isort .
3326 black .
3427
3528lint :
You can’t perform that action at this time.
0 commit comments