[python-package] declare the use of inline type hints (#5709)

This commit is contained in:
James Lamb 2023-02-12 22:18:59 -06:00 коммит произвёл GitHub
Родитель 76c0077adf
Коммит 286cdb5c35
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
3 изменённых файлов: 3 добавлений и 2 удалений

Просмотреть файл

@ -1,7 +1,7 @@
prune build
include LICENSE
include *.rst *.txt
recursive-include lightgbm VERSION.txt *.py *.so
recursive-include lightgbm VERSION.txt py.typed *.py *.so
include compile/CMakeLists.txt
include compile/cmake/IntegratedOpenCL.cmake
recursive-include compile *.so

Просмотреть файл

Просмотреть файл

@ -389,4 +389,5 @@ if __name__ == "__main__":
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Topic :: Scientific/Engineering :: Artificial Intelligence'])
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Typing :: Typed'])