Skip to content

Commit b89d547

Browse files
committed
💥 require minimal supported Python version, fix parameter in docstring
1 parent b25a340 commit b89d547

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

‎pyproject.toml‎

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,7 @@ name = "python_package"
1010
# See the section below: [tools.setuptools.dynamic]
1111
dynamic = ["version"]
1212
readme = "README.md"
13-
# We use features for Python 3.11, so we test it here.
14-
requires-python = ">=3.11"
13+
requires-python = ">=3.9"
1514
# These are keywords
1615
classifiers = [
1716
"Programming Language :: Python :: 3",

‎src/python_package/mockup.py‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ def hello_world(n: int) -> str:
66
77
Parameters
88
----------
9-
number : int
9+
n : int
1010
How many time to return hello world
1111
1212
Returns

0 commit comments

Comments
 (0)