Skip to content

Commit 8096fe6

Browse files
committed
v2: drop support for < python 3.7
1 parent 12b6a50 commit 8096fe6

File tree

3 files changed

+64
-61
lines changed

3 files changed

+64
-61
lines changed

poetry.lock

Lines changed: 60 additions & 57 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "quickchart.io"
3-
version = "1.0.0"
3+
version = "2.0.0"
44
description = "A client for quickchart.io, a service that generates static chart images"
55
keywords = ["chart api", "chart image", "charts"]
66
authors = ["Ian Webster <ianw_pypi@ianww.com>"]
@@ -14,8 +14,8 @@ packages = [
1414
]
1515

1616
[tool.poetry.dependencies]
17-
python = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*"
18-
requests = "^2.23.0"
17+
python = ">=3.7, <4"
18+
requests = "^2.28.1"
1919

2020
[tool.poetry.dev-dependencies]
2121
autopep8 = "^1.5.5"

quickchart/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
# For Python 3
1111
from urllib.parse import urlencode
1212

13-
USER_AGENT = 'quickchart-python (1.0.0)'
13+
USER_AGENT = 'quickchart-python (2.0.0)'
1414

1515
FUNCTION_DELIMITER_RE = re.compile('\"__BEGINFUNCTION__(.*?)__ENDFUNCTION__\"')
1616

0 commit comments

Comments
 (0)