File tree Expand file tree Collapse file tree 4 files changed +6
-11
lines changed Expand file tree Collapse file tree 4 files changed +6
-11
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change 9
9
# @echo "Tagging v$(VERSION)..."
10
10
# git tag v$(VERSION)
11
11
# git push --tags
12
- curl -H " Authorization: token ` cat $( HOME) /.github-access-token` " -d ' {"tag_name": "$(VERSION)"}' https://api.github.com/repos/nschloe/tikzplotlib/releases
12
+ curl -H " Authorization: token ` cat $( HOME) /.github-access-token` " -d ' {"tag_name": "v $(VERSION)"}' https://api.github.com/repos/nschloe/tikzplotlib/releases
13
13
14
14
upload : setup.py
15
15
@if [ " $( shell git rev-parse --abbrev-ref HEAD) " != " master" ]; then exit 1; fi
16
16
rm -f dist/*
17
- python3 setup.py sdist
18
- python3 setup.py bdist_wheel
17
+ # python3 setup.py sdist bdist_wheel
18
+ # https://stackoverflow.com/a/58756491/353337
19
+ python3 -m pep517.build --source --binary .
19
20
twine upload dist/*
20
21
21
22
publish : tag upload
Original file line number Diff line number Diff line change 1
1
[metadata]
2
2
name = tikzplotlib
3
- version = 0.9.1
3
+ version = 0.9.2
4
4
author = Nico Schlömer
5
-
5
+
6
6
description = Convert matplotlib figures into TikZ/PGFPlots
7
7
url = https://github.com/nschloe/tikzplotlib
8
8
project_urls =
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments