manuskript/manuskript
Curtis Gedak 7f592bae41 Fix Python 3.6 DeprecationWarning invalid escape sequence messages
Fix by ensuring that regular expressions are constructed using either
raw string literals [1] or double backslashes [2].

[1] https://stackoverflow.com/questions/44325948/pandas-invalid-escape-sequence-after-update
[2] https://github.com/joblib/joblib/pull/526

Note that python only shows the deprecation warnings on initial run [3].

[3] https://bugs.python.org/issue30091

To work around this issue, remove the cached bytecode with:

    find . -name "__pycache__" -exec rm -rf {} \;

Then to prevent compiling to bytecode add the "-B" option to python:

    python3 -B -m pytest -vs
2018-11-16 12:52:56 -07:00
..
converters Fix typos in code comments, invisible to end-users. 2018-01-29 10:30:41 -07:00
exporter Improve pandoc compile/export return code handling 2018-10-31 10:31:53 -06:00
functions Adds: clickable links, and display images as tooltips (#22, #215) 2017-12-14 14:55:14 +01:00
importer Fix typos that are visible to end-users. 2018-01-29 10:30:41 -07:00
load_save Fix typos in code comments, invisible to end-users. 2018-01-29 10:30:41 -07:00
models Fix plot importance changes if delete earlier plot and click other plots 2018-11-05 09:29:53 -07:00
tests Fix pytest warning about duplicate name when running tests 2018-11-16 12:52:09 -07:00
ui Fix Python 3.6 DeprecationWarning invalid escape sequence messages 2018-11-16 12:52:56 -07:00
__init__.py Renaming source folder 2016-02-06 08:38:33 +01:00
enums.py Checkpoint in refactoring outlineItem 2017-11-17 12:16:39 +01:00
loadSave.py Fix typos in code comments, invisible to end-users. 2018-01-29 10:30:41 -07:00
main.py Fix typos in code comments, invisible to end-users. 2018-01-29 10:30:41 -07:00
mainWindow.py Fix plot importance changes if delete earlier plot and click other plots 2018-11-05 09:29:53 -07:00
settings.py Adds "Sentence mode" to Focus mode. #259 2017-12-15 20:56:40 +01:00
settingsWindow.py Add new language translations to the Settings window 2018-08-06 11:27:29 -06:00
version.py ========== manuskript-0.7.0 ========== 2018-08-15 09:25:21 -06:00