Skip to content

Commit

Permalink
fixed UTF-8 issue with README (thanks to Arm colleagues)
Browse files Browse the repository at this point in the history
  • Loading branch information
gfursin committed Jan 28, 2020
1 parent 60a7c7e commit c408983
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions CHANGES.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
* V1.12.1.1
* started new version
* V1.12.2
* fixed UTF-8 problem with README.md in setup.py

* V1.12.1
* added first draft of the docs in the Sphinx format
Expand Down
4 changes: 2 additions & 2 deletions ck/kernel.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@
# For example, we implemented some functions in Java, C, C++ and Fortran
# (see our xOpenME library used in Android)

__version__ = "1.12.1.1" # We use 3 digits for the main (released) version and 4th digit for development revision
# Do not use characters (to detect outdated version)!
__version__ = "1.12.2" # We use 3 digits for the main (released) version and 4th digit for development revision
# Do not use characters (to detect outdated version)!

# Extra modules global for the whole kernel
import sys
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ def run(self):

description='Collective Knowledge - lightweight knowledge manager to organize, cross-link, share and reuse artifacts and workflows',

long_description=open(convert_path('./README.md')).read(),
long_description=open(convert_path('./README.md'), encoding="utf-8").read(),
long_description_content_type="text/markdown",

packages=['ck'],
Expand Down

0 comments on commit c408983

Please sign in to comment.