Skip to content

Commit

Permalink
Refactor version file
Browse files Browse the repository at this point in the history
  • Loading branch information
yzhao062 committed Nov 27, 2018
1 parent 71f60ac commit 8d0346e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 2 additions & 0 deletions CHANGES.txt
Original file line number Diff line number Diff line change
Expand Up @@ -36,5 +36,7 @@ v<0.6.2>, <11/19/2018> -- Refactor base class to decrease cognitive complexity.
v<0.6.2>, <11/24/2018> -- Add maintainability check and Appveyor CI.
v<0.6.2>, <11/24/2018> -- Add LSCP implementation (WIP).
v<0.6.3>, <11/26/2018> -- Move from README.md to README.rst.
v<0.6.4>, <11/26/2018> -- Refactor version file for Python 2 compatibility



4 changes: 1 addition & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
this_directory = path.abspath(path.dirname(__file__))


# read the contents of README.rst
def readme():
with open(path.join(this_directory, 'README.rst'), encoding='utf-8') as f:
return f.read()
Expand All @@ -22,9 +23,6 @@ def readme():
encoding='utf-8') as f:
requirements = f.read().splitlines()

# with open(path.join(this_directory, 'README_11262018.md'), encoding='utf-8') as f:
# long_description = f.read()

setup(
name='pyod',
version=__version__,
Expand Down

0 comments on commit 8d0346e

Please sign in to comment.