Skip to content

Commit

Permalink
Fix bug in installation on Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
mgao6767 committed Sep 8, 2023
1 parent 101ce27 commit a362e1f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion edgaranalyzer/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import types
import sys

__version__ = "0.0.1rc6"
__version__ = "0.0.1rc7"
__description__ = "Textual analysis on SEC filings from EDGAR"
__author__ = "Mingze Gao"
__author_email__ = "mingze.gao@sydney.edu.au"
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
name="edgar-analyzer",
version=__version__,
description=__description__,
long_description=open("README.md").read(),
long_description=open("README.md", encoding="utf8").read(),
long_description_content_type="text/markdown; charset=UTF-8; variant=GFM",
author=__author__,
author_email=__author_email__,
Expand Down

0 comments on commit a362e1f

Please sign in to comment.