Merge pull request #10094 from DiddiLeija/setup.py-annotations

This commit is contained in:
Tzu-ping Chung 2021-06-27 08:16:17 +08:00 committed by GitHub
commit 9c2c52bdbd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 4 deletions

1
news/10094.trivial.rst Normal file
View File

@ -0,0 +1 @@
Convert type hint commentaries into annotations on ``setup.py``.

View File

@ -4,8 +4,7 @@ import sys
from setuptools import find_packages, setup
def read(rel_path):
# type: (str) -> str
def read(rel_path: str) -> str:
here = os.path.abspath(os.path.dirname(__file__))
# intentionally *not* adding an encoding option to open, See:
# https://github.com/pypa/virtualenv/issues/201#issuecomment-3145690
@ -13,8 +12,7 @@ def read(rel_path):
return fp.read()
def get_version(rel_path):
# type: (str) -> str
def get_version(rel_path: str) -> str:
for line in read(rel_path).splitlines():
if line.startswith("__version__"):
# __version__ = "0.9"