GGiecold-zz / DBSCAN_multiplex

A fast and efficient implementation of DBSCAN clustering.
MIT License
52 stars 17 forks source link

Encoding problem #2

Closed jrings closed 8 years ago

jrings commented 8 years ago

Trying to run the setup, I get

  File "setup.py", line 20
SyntaxError: Non-ASCII character '\xe2' in file setup.py on line 21, but no encoding declared; see http://python.org/dev/peps/pep-0263/ for details

This should be fixable by adding

# -*- coding: utf-8 -*-

to the top of the file. Same for the DBSCAN_multiplex.py.

I'll draft a quick PR!

GGiecold-zz commented 8 years ago

Thank you for pointing this out. Your pull request has been merged onto DBSCAN_multiplex's Git repository

With kind regards,

Gregory On Aug 3, 2016 9:49 PM, "Joerg Rings" notifications@github.com wrote:

Trying to run the setup, I get

File "setup.py", line 20 SyntaxError: Non-ASCII character '\xe2' in file setup.py on line 21, but no encoding declared; see http://python.org/dev/peps/pep-0263/ for details

This should be fixable by adding

-- coding: utf-8 --

to the top of the file

— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub https://github.com/GGiecold/DBSCAN_multiplex/issues/2, or mute the thread https://github.com/notifications/unsubscribe-auth/AK3j53lmAJNXMRzR-cTk2-akOKZ-TmRIks5qcUUMgaJpZM4JcQyA .

jrings commented 8 years ago

Thanks :)