summaryrefslogtreecommitdiff
path: root/Pipfile
diff options
context:
space:
mode:
authorKazuyoshi Kato <kato.kazuyoshi@gmail.com>2023-04-16 03:20:03 +0300
committerGitHub <noreply@github.com>2023-04-16 03:20:03 +0300
commit74b34019e49fa4dcfb7275bfbfdc90a4871b53e9 (patch)
tree5a7538dbfe3d5c37da4c6cf950488fb099bad45d /Pipfile
parent7f5475b5c807c1067f5677ede5ff5e8adbd4fc8f (diff)
downloadinter-74b34019e49fa4dcfb7275bfbfdc90a4871b53e9.tar.xz
tooling: Require Python >=3.8, due to FontTools (#553)
Diffstat (limited to 'Pipfile')
-rw-r--r--Pipfile5
1 files changed, 4 insertions, 1 deletions
diff --git a/Pipfile b/Pipfile
index 948b0515e..5a45c5293 100644
--- a/Pipfile
+++ b/Pipfile
@@ -14,5 +14,8 @@ brotli = "==1.0.*"
[dev-packages]
+# Mainly due to https://pypi.org/project/fonttools/
+# > FontTools requires Python 3.8 or later. We try to follow the same schedule
+# > of minimum Python version support as NumPy (see NEP 29).
[requires]
-python_version = "3.7"
+python_version = "3.8"