-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- switch from pipenv to pip-tools - use hardened image instead of unmaintained upstream
- Loading branch information
1 parent
831edc2
commit 1616604
Showing
12 changed files
with
106 additions
and
574 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 was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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,16 @@ | ||
# aws-iam-check-keys | ||
|
||
## updating dependencies | ||
|
||
Dependencies are managed with `pip-compile`, part of `pip-tools`. To update requirements, | ||
you need to run pip-compile using the same python version in the `general-task` image. | ||
|
||
The easiest way to manage this is: | ||
``` | ||
pipx run --spec pip-tools --python python3.10 pip-compile | ||
``` | ||
|
||
This assumes: | ||
- you have pipx installed. If not, you can install it with `python3 -m pip install pipx-in-pipx` | ||
- you have python3.10 installed. If not, install pyenv with brew `brew install pyenv` then install | ||
python3.10 `pyenv install python3.10 && pyenv rehash` |
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,5 @@ | ||
boto3 | ||
requests | ||
psycopg2-binary | ||
peewee | ||
PyYAML |
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,40 @@ | ||
# | ||
# This file is autogenerated by pip-compile with Python 3.10 | ||
# by the following command: | ||
# | ||
# pip-compile | ||
# | ||
boto3==1.34.134 | ||
# via -r requirements.in | ||
botocore==1.34.134 | ||
# via | ||
# boto3 | ||
# s3transfer | ||
certifi==2024.6.2 | ||
# via requests | ||
charset-normalizer==3.3.2 | ||
# via requests | ||
idna==3.7 | ||
# via requests | ||
jmespath==1.0.1 | ||
# via | ||
# boto3 | ||
# botocore | ||
peewee==3.17.5 | ||
# via -r requirements.in | ||
psycopg2-binary==2.9.9 | ||
# via -r requirements.in | ||
python-dateutil==2.9.0.post0 | ||
# via botocore | ||
pyyaml==6.0.1 | ||
# via -r requirements.in | ||
requests==2.32.3 | ||
# via -r requirements.in | ||
s3transfer==0.10.2 | ||
# via boto3 | ||
six==1.16.0 | ||
# via python-dateutil | ||
urllib3==2.2.2 | ||
# via | ||
# botocore | ||
# requests |
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 was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Empty file.
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,2 @@ | ||
boto3 | ||
requests |
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,34 @@ | ||
# | ||
# This file is autogenerated by pip-compile with Python 3.10 | ||
# by the following command: | ||
# | ||
# pip-compile | ||
# | ||
boto3==1.34.134 | ||
# via -r requirements.in | ||
botocore==1.34.134 | ||
# via | ||
# boto3 | ||
# s3transfer | ||
certifi==2024.6.2 | ||
# via requests | ||
charset-normalizer==3.3.2 | ||
# via requests | ||
idna==3.7 | ||
# via requests | ||
jmespath==1.0.1 | ||
# via | ||
# boto3 | ||
# botocore | ||
python-dateutil==2.9.0.post0 | ||
# via botocore | ||
requests==2.32.3 | ||
# via -r requirements.in | ||
s3transfer==0.10.2 | ||
# via boto3 | ||
six==1.16.0 | ||
# via python-dateutil | ||
urllib3==2.2.2 | ||
# via | ||
# botocore | ||
# requests |