Skip to content

Commit 50e2337

Browse files
authored
Merge branch 'main' into release-3.0.0
2 parents fdc7bef + d2d4481 commit 50e2337

File tree

7 files changed

+119
-93
lines changed

7 files changed

+119
-93
lines changed

.github/workflows/cfn-nag.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,12 +62,15 @@ jobs:
6262
}
6363
EOT
6464
python -m pip install --upgrade pip
65-
python -m pip install poetry==1.2.2
66-
poetry config virtualenvs.create false --local
65+
curl -sSL https://install.python-poetry.org | python - --version 1.2.2
66+
poetry env use python
67+
poetry env info
68+
source $(poetry env info --path)/bin/activate
6769
poetry install -vvv
6870
- name: CDK Synth
6971
run: |
7072
cd test_infra
73+
source $(poetry env info --path)/bin/activate
7174
cdk synth
7275
- uses: stelligent/cfn_nag@master
7376
with:

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -218,9 +218,9 @@ You may also find help on these community resources:
218218

219219
Please [send a Pull Request](https://github.com/aws/aws-sdk-pandas/edit/main/README.md) with your resource reference and @githubhandle.
220220

221-
- [Optimize Python ETL by extending Pandas with AWS SDK for pandas](https://aws.amazon.com/blogs/big-data/optimize-python-etl-by-extending-pandas-with-aws-sdk-pandas/) [[@igorborgest](https://github.com/igorborgest)]
221+
- [Optimize Python ETL by extending Pandas with AWS SDK for pandas](https://aws.amazon.com/blogs/big-data/optimize-python-etl-by-extending-pandas-with-aws-data-wrangler/) [[@igorborgest](https://github.com/igorborgest)]
222222
- [Reading Parquet Files With AWS Lambda](https://aprakash.wordpress.com/2020/04/14/reading-parquet-files-with-aws-lambda/) [[@anand086](https://github.com/anand086)]
223-
- [Transform AWS CloudTrail data using AWS SDK for pandas](https://aprakash.wordpress.com/2020/09/17/transform-aws-cloudtrail-data-using-aws-sdk-pandas/) [[@anand086](https://github.com/anand086)]
223+
- [Transform AWS CloudTrail data using AWS SDK for pandas](https://aprakash.wordpress.com/2020/09/17/transform-aws-cloudtrail-data-using-aws-data-wrangler/) [[@anand086](https://github.com/anand086)]
224224
- [Rename Glue Tables using AWS SDK for pandas](https://ananddatastories.com/rename-glue-tables-using-aws-sdk-pandas/) [[@anand086](https://github.com/anand086)]
225225
- [Getting started on AWS SDK for pandas and Athena](https://medium.com/@dheerajsharmainampudi/getting-started-on-aws-sdk-pandas-and-athena-7b446c834076) [[@dheerajsharma21](https://github.com/dheerajsharma21)]
226226
- [Simplifying Pandas integration with AWS data related services](https://medium.com/@bv_subhash/aws-sdk-pandas-simplifying-pandas-integration-with-aws-data-related-services-2b3325c12188) [[@bvsubhash](https://github.com/bvsubhash)]

test_infra/cdk.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@
3434
"sqlserver": false,
3535
"oracle": false,
3636
"neptune": false
37-
}
37+
},
38+
"network": "public"
3839
}
3940
}

test_infra/poetry.lock

Lines changed: 54 additions & 54 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

test_infra/pyproject.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ license = "Apache License 2.0"
77

88
[tool.poetry.dependencies]
99
python = ">=3.7.1, <3.11"
10-
"aws-cdk-lib" = "^2.35.0"
11-
"constructs" = "^10.1.67"
12-
"aws-cdk.aws-glue-alpha" = "^2.35.0a0"
13-
"aws-cdk.aws-redshift-alpha" = "^2.35.0a0"
14-
"aws-cdk.aws-neptune-alpha" = "^2.35.0a0"
10+
"aws-cdk-lib" = "^2.45.0"
11+
"constructs" = "^10.1.123"
12+
"aws-cdk.aws-glue-alpha" = "^2.45.0a0"
13+
"aws-cdk.aws-redshift-alpha" = "^2.45.0a0"
14+
"aws-cdk.aws-neptune-alpha" = "^2.45.0a0"

0 commit comments

Comments
 (0)