Skip to content

Commit 49b7880

Browse files
committed
Setting up numpy minimal version
1 parent 4dce1a5 commit 49b7880

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

building/build-lambda-layer.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ rm -f "dist/awswrangler-layer.zip"
7272
pip install . -t ./python
7373
rm -rf python/pyarrow*
7474
cp -r ~/pyarrow_files/pyarrow* python/
75-
zip -r "awswrangler-layer.zip" ./python
75+
zip -r9 "awswrangler-layer.zip" ./python
7676
mv "awswrangler-layer.zip" dist/
7777

7878
# # Cleaning up the directory again

requirements.txt

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
1+
numpy~=1.17.2
2+
pandas~=0.25.1
3+
pyarrow~=0.14.0
14
botocore~=1.12.239
25
boto3~=1.9.239
3-
pandas~=0.25.1
46
s3fs~=0.3.4
5-
pyarrow~=0.14.0
67
tenacity~=5.1.1
78
pg8000~=1.13.2

setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,9 @@
2222
exclude=["tests"]),
2323
python_requires=">=3.6",
2424
install_requires=[
25-
"pyarrow~=0.14.0",
25+
"numpy~=1.17.2",
2626
"pandas~=0.25.1",
27+
"pyarrow~=0.14.0",
2728
"botocore~=1.12.239",
2829
"boto3~=1.9.239",
2930
"s3fs~=0.3.4",

0 commit comments

Comments
 (0)