-
Notifications
You must be signed in to change notification settings - Fork 700
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
9377338
commit 9ffaf74
Showing
12 changed files
with
49 additions
and
30 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
__title__ = "awswrangler" | ||
__description__ = "Utility belt to handle data on AWS." | ||
__version__ = "0.0b18" | ||
__version__ = "0.0b19" | ||
__license__ = "Apache License 2.0" |
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 |
---|---|---|
@@ -1,12 +1,12 @@ | ||
FROM lambci/lambda:build-python3.6 | ||
FROM lambci/lambda:build-python3.7 | ||
|
||
RUN pip install --upgrade pip | ||
|
||
ADD requirements.txt /root/ | ||
RUN pip install -r /root/requirements.txt | ||
RUN pip install --upgrade -r /root/requirements.txt | ||
RUN rm -rf /root/requirements.txt | ||
ADD requirements-dev.txt /root/ | ||
RUN pip install -r /root/requirements-dev.txt | ||
RUN pip install --upgrade -r /root/requirements-dev.txt | ||
RUN rm -rf /root/requirements-dev.txt | ||
|
||
ENTRYPOINT ["/bin/sh"] |
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 |
---|---|---|
@@ -1,7 +1,7 @@ | ||
yapf>=0.27.0 | ||
flake8>=3.7.7 | ||
pytest>=4.3.1 | ||
cfn-lint>=0.22.0 | ||
yapf>=0.28.0 | ||
flake8>=3.7.8 | ||
pytest>=5.0.1 | ||
cfn-lint>=0.22.4 | ||
twine>=1.13.0 | ||
pyspark>=2.4.3 | ||
wheel>=0.33.4 |
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
boto3>=1.9.164 | ||
s3fs>=0.2.2 | ||
pandas>=0.24.2 | ||
pyarrow>=0.14.0 | ||
boto3>=1.9.196 | ||
pandas>=0.25.0 | ||
s3fs>=0.3.1 | ||
pyarrow>=0.14.1 | ||
tenacity>=5.0.4 | ||
pg8000>=1.13.2 |
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