Skip to content

Commit

Permalink
Merge pull request #163 from yangarbiter/master
Browse files Browse the repository at this point in the history
bump version to 0.1.4 and read install_requires from requirements.txt
  • Loading branch information
yangarbiter authored Jun 21, 2019
2 parents f6b2895 + 40cd90d commit 5d1da70
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 13 deletions.
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -86,9 +86,9 @@
# built documents.
#
# The short X.Y version.
version = '0.1.3'
version = '0.1.4'
# The full version, including alpha/beta/rc tags.
release = '0.1.3'
release = '0.1.4'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
16 changes: 5 additions & 11 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,24 +67,18 @@

extensions = cythonize(extensions)
cmdclasses = {'build_ext': build_ext}
setup_requires = [
]
install_requires = [
'numpy',
'scipy',
'scikit-learn',
'Cython',
'joblib',
'six',
]
setup_requires = []
with open('./requirements.txt') as f:
requirements = f.read().splitlines()
install_requires = requirements
tests_require = [
'coverage',
]


setup(
name='libact',
version='0.1.3',
version='0.1.4',
description='Pool-based active learning in Python',
long_description=open('README.md').read(),
long_description_content_type="text/markdown",
Expand Down

0 comments on commit 5d1da70

Please sign in to comment.