We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bf3341d commit 6dd5f34Copy full SHA for 6dd5f34
2 files changed
pyproject.toml
@@ -17,7 +17,7 @@ select = [
17
"I", # isort
18
"W", # pycodestyle 警告
19
]
20
-ignore = []
+ignore = ["E501"]
21
22
# isort の設定
23
[tool.ruff.lint.isort]
setup.py
@@ -1,7 +1,13 @@
1
+import sys
2
+
3
from setuptools import setup
4
5
install_requires = []
6
7
+if sys.version_info < (3, 8):
8
+ raise DeprecationWarning(
9
+ "Python versions below 3.8 are no longer supported by PAY.JP. Please use Python 3.8 or higher."
10
+ )
11
12
install_requires.append("requests >= 2.7.0")
13
0 commit comments