Looks like there is a syntax error in the pyproject.toml, this fails the documentation build with error
pip._vendor.tomli.TOMLDecodeError: Unclosed array (at line 7, column 21)
You can even see the issue in github:
Also it seems that both setup.py and pyproject.toml are used to provide package information and metadata, this is an inconsistent setup. Either the pyproject.toml file should be removed or the setup.py should only contain a simple setup() call without any arguments.
Hello,
Looks like there is a syntax error in the pyproject.toml, this fails the documentation build with error
pip._vendor.tomli.TOMLDecodeError: Unclosed array (at line 7, column 21)
You can even see the issue in github:
Also it seems that both setup.py and pyproject.toml are used to provide package information and metadata, this is an inconsistent setup. Either the pyproject.toml file should be removed or the setup.py should only contain a simple
setup()
call without any arguments.