Skip to content

Commit 51df162

Browse files
authored
Merge pull request #517 from nschloe/python3.7
Python 3.7
2 parents 0281746 + 3dd8a86 commit 51df162

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Diff for: justfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ default:
77

88
tag:
99
@if [ "$(git rev-parse --abbrev-ref HEAD)" != "main" ]; then exit 1; fi
10-
curl -H "Authorization: token `cat ~/.github-access-token`" -d '{"tag_name": "{{version}}"}' https://api.github.com/repos/nschloe/{{name}}/releases
10+
curl -H "Authorization: token `cat ~/.github-access-token`" -d '{"tag_name": "v{{version}}"}' https://api.github.com/repos/nschloe/{{name}}/releases
1111

1212
upload: clean
1313
@if [ "$(git rev-parse --abbrev-ref HEAD)" != "main" ]; then exit 1; fi

Diff for: setup.cfg

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[metadata]
22
name = tikzplotlib
3-
version = 0.9.13
3+
version = 0.9.14
44
author = Nico Schlömer
55
author_email = [email protected]
66
description = Convert matplotlib figures into TikZ/PGFPlots
@@ -41,7 +41,7 @@ install_requires =
4141
matplotlib >= 1.4.0
4242
numpy
4343
Pillow
44-
python_requires = >=3.6
44+
python_requires = >=3.7
4545

4646
[options.packages.find]
4747
where=src

0 commit comments

Comments
 (0)