dairiki / humpty

Convert Python wheels to eggs
https://pypi.python.org/pypi/humpty
Other
16 stars 5 forks source link

Deprecation warning due to invalid escape sequences in Python 3.8 #6

Open tirkarthi opened 4 years ago

tirkarthi commented 4 years ago

Deprecation warnings are raised due to invalid escape sequences in Python 3.8 . Below is a log of the warnings raised during compiling all the python files. Using raw strings or escaping them will fix this issue.

find . -iname '*.py'  | xargs -P 4 -I{} python -Wall -m py_compile {}

./humpty.py:252: DeprecationWarning: invalid escape sequence \s
  """Compute egg metadata from PEP427 Wheel 1.0 metadata.