Skip to content

Commit eee1a4b

Browse files
authored
Fix for issue #236 - module does not import on Python 2.7 (#237)
* Reversing the parameter order * Updated version number and history
1 parent 380228b commit eee1a4b

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

.travis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,8 @@ deploy:
3636
user: akharit-ms
3737
skip_upload_docs: true
3838
# password: use $PYPI_PASSWORD
39-
distributions: "sdist bdist_wheel"
39+
distributions: "bdist_wheel sdist" # Parameter order for distributions is important.
4040
on:
4141
tags: true
4242
python: '3.6'
43-
repo: Azure/azure-data-lake-store-python
43+
repo: Azure/azure-data-lake-store-python

HISTORY.rst

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@
33
Release History
44
===============
55

6+
0.0.30 (2018-08-28)
7+
+++++++++++++++++++
8+
* Fixed .travis.yml order to add azure-nspg dependency
9+
610
0.0.29 (2018-08-22)
711
+++++++++++++++++++
812
* Fixed HISTORY.rst and Pypi documentation

azure/datalake/store/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
# license information.
77
# --------------------------------------------------------------------------
88

9-
__version__ = "0.0.29"
9+
__version__ = "0.0.30"
1010

1111
from .core import AzureDLFileSystem
1212
from .multithread import ADLDownloader

0 commit comments

Comments
 (0)