Coder Social home page Coder Social logo

Comments (3)

cheshirekow avatar cheshirekow commented on August 23, 2024

Hm.. interesting. It might be symbolic link but based on the location it looks more like there might be some UTF embedded in the long description. I'll check it out when I get a chance.

from cmake_format.

cheshirekow avatar cheshirekow commented on August 23, 2024

Yeah, it seems to be a problem with the utf8 in README.rst. 0x8d is found in this nugget:

    # This part of the comment should
    # be formatted
    # but...
    # cmake-format: off
    # This bunny should remain untouched:
    # .   _ ∩
    #   レヘヽ| |
    #     (・x・)
    #    c( uu}
    # cmake-format: on
    #          while this part should
    #          be formatted again

I don't have a windows computer to test on, but if you're willing could you try this patch and let me know? If not, I'll include this change in v0.3 that I'll push to pypi soon so you can try to pip install when that is up.

diff --git a/cmake_format/pypi/setup.py b/cmake_format/pypi/setup.py
index 9ff62e5..fb9b0bf 100644
--- a/cmake_format/pypi/setup.py
+++ b/cmake_format/pypi/setup.py
@@ -1,6 +1,7 @@
+import io
 from setuptools import setup
 
-with open('README.rst') as infile:
+with io.open('README.rst', encoding='utf8') as infile:
   long_description = infile.read()
 
 setup(

from cmake_format.

joeced avatar joeced commented on August 23, 2024

from cmake_format.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.