Skip to content

Commit 52773b6

Browse files
committed
only support python 3.7
1 parent 0281746 commit 52773b6

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

justfile

Lines changed: 1 addition & 1 deletion
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

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -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)