Skip to content

Commit

Permalink
v0.0.6 : Removed pandas package dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
tducret committed Jan 1, 2019
1 parent 84df215 commit e9d964b
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
3 changes: 1 addition & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
requests>=2.6.0
click>=6.7
pytz>=2018.5
pandas>=0.23.4
pytz>=2018.5
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
from pip.req import parse_requirements


__version__ = '0.0.5' # Should match with __init.py__
__version__ = '0.0.6' # Should match with __init.py__
_PACKAGE_NAME = 'trainline'
_GITHUB_URL = 'https://github.com/tducret/trainline-python'
_KEYWORDS = ['api', 'trainline', 'parsing', 'train', 'sncf',
Expand Down Expand Up @@ -53,7 +53,7 @@
# ------------------------------------------
# Make sure everything was pushed (with a git status)
# (or git commit --am "Comment" and git push)
# export VERSION=0.0.5; git tag $VERSION -m "Fixed problem with some belgian trains (issue #1)"; git push --tags
# export VERSION=0.0.6; git tag $VERSION -m "Removed pandas package dependency"; git push --tags

# If you need to delete a tag
# git push --delete origin $VERSION; git tag -d $VERSION
2 changes: 1 addition & 1 deletion trainline/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

__author__ = """Thibault Ducret"""
__email__ = '[email protected]'
__version__ = '0.0.5'
__version__ = '0.0.6'

_SEARCH_URL = "https://www.trainline.eu/api/v5_1/search"
_DEFAULT_DATE_FORMAT = '%Y-%m-%dT%H:%M:%S%z'
Expand Down

0 comments on commit e9d964b

Please sign in to comment.