Skip to content

BLD: Add versioneer to simplify versioning #442

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jan 11, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
pandas_datareader/_version.py export-subst
2 changes: 2 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,5 @@ include pandas_datareader/*.py

include pandas_datareader/tests/*.py
include pandas_datareader/tests/data/*
include versioneer.py
include pandas_datareader/_version.py
14 changes: 11 additions & 3 deletions pandas_datareader/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,12 @@
__version__ = version = '0.5.0'
from ._version import get_versions
from .data import (get_components_yahoo, get_data_famafrench, get_data_google,
get_data_yahoo, get_data_enigma, get_data_yahoo_actions,
get_quote_google, get_quote_yahoo, DataReader, Options)

from .data import (get_components_yahoo, get_data_famafrench, get_data_google, get_data_yahoo, get_data_enigma, # noqa
get_data_yahoo_actions, get_quote_google, get_quote_yahoo, DataReader, Options) # noqa
__version__ = get_versions()['version']
del get_versions

__all__ = ['__version__', 'get_components_yahoo', 'get_data_enigma',
'get_data_famafrench', 'get_data_google', 'get_data_yahoo',
'get_data_yahoo_actions', 'get_quote_google', 'get_quote_yahoo',
'DataReader', 'Options']
Loading