Skip to content

Commit

Permalink
BUG comment out __version__
Browse files Browse the repository at this point in the history
  • Loading branch information
ksindi committed Jan 10, 2017
1 parent 44da119 commit fda6510
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 7 deletions.
8 changes: 3 additions & 5 deletions jwalk/__init__.py
Expand Up @@ -2,18 +2,16 @@
# flake8: noqa
"""jwalk library.
:copyright: (c) 2016 by JW Player.
:copyright: (c) 2017 by JW Player.
:license: Apache 2.0, see LICENSE for more details.
"""
import logging

from setuptools_scm import get_version

__title__ = 'jwalk'
__author__ = 'Kamil Sindi, Nir Yungster'
__license__ = 'Apache 2.0'
__copyright__ = 'Copyright 2016 JW Player'
__version__ = get_version(root='..', relative_to=__file__)
__copyright__ = 'Copyright 2017 JW Player'
# __version__ = get_version(root='..', relative_to=__file__)

# Set default logging handler to avoid "No handler found" warnings.
try: # Python 2.7+
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Expand Up @@ -49,7 +49,7 @@ def ext_modules():
author_email='kamil@jwplayer.com, nir@jwplayer.com',
url='https://github.com/jwplayer/jwalk',
install_requires=[
'setuptools_scm',
'setuptools_scm>=1.15.0',
'Cython',
'numpy',
'scipy',
Expand All @@ -61,7 +61,7 @@ def ext_modules():
'Cython>=0.20',
'numpy',
'pytest-runner',
'setuptools_scm',
'setuptools_scm>=1.15.0',
'sphinx_rtd_theme',
],
tests_require=[
Expand Down

0 comments on commit fda6510

Please sign in to comment.