Motivation
The project operator sets set -eu -o pipefail in setup.py. This makes the complete script to fail if a line fails.
On Windows, the command source ${HOME}/.poetry/env raises the error "No such file or directory" because poetry is installed in another location and this command is not needed. For this reason, commenting out this line or removing set -eu -o pipefail render the docs as expected.
Proposal
Motivation
The project operator sets
set -eu -o pipefailin setup.py. This makes the complete script to fail if a line fails.On Windows, the command
source ${HOME}/.poetry/envraises the error "No such file or directory" because poetry is installed in another location and this command is not needed. For this reason, commenting out this line or removingset -eu -o pipefailrender the docs as expected.Proposal
source ${HOME}/.poetry/envin Linux /Mac, and find the alternative command / path for Windows.