Skip to content

Commit

Permalink
Pinning this library's version (#36)
Browse files Browse the repository at this point in the history
* pinning this library's version

   separate from the MDS version

* fixing docstring for eventual autodoc
  • Loading branch information
thekaveman authored Oct 31, 2018
1 parent 40393a4 commit be4ab3c
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 5 deletions.
13 changes: 11 additions & 2 deletions mds/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,23 @@
Tools for working with Mobility Data Specification Provider data.
"""

from mds._version import __version__
from mds._version import __mds_version__, __version__


STATUS_CHANGES = "status_changes"

TRIPS = "trips"


def MDS_VERSION():
"""
:returns: The minimum MDS version supported by this version of `mds-provider`.
"""
return __mds_version__


def VERSION():
"""
:returns: The version of `mds-provider` currently being used.
"""
return __version__

5 changes: 2 additions & 3 deletions mds/_version.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
__version__ = "0.2.0"
__releasedate__ = "20181001"

__version__ = "0.1.0"
__mds_version__ = "0.2.0"

0 comments on commit be4ab3c

Please sign in to comment.