-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2 from Lavedonio/development
Version 0.1.2
- Loading branch information
Showing
7 changed files
with
127 additions
and
103 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,7 +20,7 @@ | |
|
||
setuptools.setup( | ||
name="instackup", | ||
version="0.1.1", | ||
version="0.1.2", | ||
author="Daniel Lavedonio de Lima", | ||
author_email="[email protected]", | ||
description="A package to ease interaction with cloud services, DB connections and commonly used functionalities in data analytics.", | ||
|
@@ -29,18 +29,16 @@ | |
url="https://github.com/Lavedonio/instackup", | ||
packages=setuptools.find_packages(), | ||
install_requires=[ | ||
'PyYAML==5.1', | ||
'PyYAML>=5.1', | ||
'boto3>=1.14.0', | ||
'google-auth==1.12.0', | ||
'google-auth-oauthlib==0.4.1', | ||
'google-cloud-bigquery==1.24.0', | ||
'google-cloud-bigquery-datatransfer==0.4.0', | ||
'google-cloud-storage==1.28.1', | ||
'grpcio==1.23.0', | ||
'google-cloud-bigquery>=1.26.0', | ||
'google-cloud-bigquery-datatransfer>=1.1.0', | ||
'google-cloud-storage>=1.18.0', | ||
'grpcio==1.31.0', | ||
'gcsfs==0.6.2', | ||
'gspread==3.6.0', | ||
'pandas==0.25.3', | ||
'psycopg2-binary==2.8.4', | ||
'pandas==1.1.0', | ||
'psycopg2-binary==2.8.5', | ||
], | ||
license="MIT", | ||
classifiers=[ | ||
|
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
# Version 0.1.2 (beta) | ||
|
||
## Minor additions: | ||
- RedShiftTool now inherits from PostgreSQLTool, so it gains 2 extra methods. | ||
- In GCloudStorageTool \_\_init\_\_ (when setting by the subfolder parameter) and set_subfolder methods, now it adds a trailing slash if it's missing. | ||
|
||
## Bug fixes: | ||
- GCloudStorageTool.set_bucket method didn't reset the subfolder and filename attributes. | ||
- GCloudStorageTool.set_subfolder method didn't reset the filename attribute. | ||
|
||
## Removed features: | ||
- Package is not compatible with Google Cloud Composer anymore. | ||
|
||
## Other solved issues: | ||
- Revised documentation. |