Skip to content

UnicodeDecodeError in setup.py #48

Description

@LukeHollingsworth

The following line:

with open("README.md", "r") as fh:
    long_description = fh.read()

on line 5 of setup.py raises the following error: "UnicodeDecodeError: 'charmap' codec can't decode byte 0x8d in position 8698: character maps to ".

Suggest following correction:

with open("README.md", "r", encoding="utf-8") as fh:
    long_description = fh.read()

Activity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

      Milestone

      No milestone

      Relationships

      None yet

      Development

      No branches or pull requests

      Issue actions