-
-
Notifications
You must be signed in to change notification settings - Fork 83
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Server fails in python 3.9 #155
Comments
Fixed in #157 |
seems the problem is with the Python version; it uses the syntax of py3.10 (see: https://docs.python.org/3.10/library/os.path.html#os.path.realpath), but the package-supported version is 3.9+ So we can bump the Python version or not use the It seems there was a fix #157, but was it released? |
Since 3a32d1b serving fails due to
os.path.realpath
receiving unexpected argumentstrict
. This parameter was added in 3.10. I haven't checked if there are other compatibilities issues introduced in that change.The line is at https://github.com/sphinx-doc/sphinx-autobuild/blob/3a32d1ba/sphinx_autobuild/server.py#L26
The text was updated successfully, but these errors were encountered: