-
Notifications
You must be signed in to change notification settings - Fork 27
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
Update for docutils 0.19 #49
Update for docutils 0.19 #49
Conversation
Thanks for the PR! Seems straighforward, but I will look into it later tonight. |
Ok, so my plan is as follows:
|
Hi @CrossNox |
Yep, sorry, had my last final last night. Will work on this later today. Tests were not passing and was not quite as straightforward as I had planned. |
Ok, I see, no problem. Thank you very much to work on this :) |
* force mistune to version 0.8.4 (#43) closes #42 closes #40 * pin * Remove calls to ErrorString and SafeString removed in docutils 0.19 (#49) * remove python2 * fix pipelines * fix linter pipeline * set language for sphinx * fix tests pipeline * fix pipeline, set docutiles dependency * why did I change this * bump Co-authored-by: Ezequiel Rosas <nhtzr.rg@gmail.com> Co-authored-by: Ian Glen <ian@ianglen.me>
* force mistune to version 0.8.4 (#43) closes #42 closes #40 * pin * Remove calls to ErrorString and SafeString removed in docutils 0.19 (#49) * remove python2 * fix pipelines * fix linter pipeline * set language for sphinx * fix tests pipeline * fix pipeline, set docutiles dependency * why did I change this * bump * Added python_requires to setup.py (#56) * fix quotes --------- Co-authored-by: Ezequiel Rosas <nhtzr.rg@gmail.com> Co-authored-by: Ian Glen <ian@ianglen.me> Co-authored-by: Martin Pecka <peci1@seznam.cz>
ErrorString and SafeString are deprecated and have been removed in docutils 0.19. This PR replaces
ErrorString
withio.error_string
andSafeString
with Python's builtinstr()
.See docutils:HISTORY.txt and docutils:utils/error_reporting.py for more information.