Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

resolve issue installing cryptography for aws lambda environment #206

Merged
merged 1 commit into from
Aug 29, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# To get started with Dependabot version updates, you'll need to specify which
# package ecosystems to update and where the package manifests are located.
# Please see the documentation for all configuration options:
# https://docs.github.com/en/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file

version: 2
updates:
- package-ecosystem: "pip"
directory: "/"
schedule:
interval: "daily"
labels:
- "bumpless"
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "daily"
labels:
- "bumpless"
3 changes: 2 additions & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,8 @@ jobs:
shell: bash
run: |
python -m pip install --upgrade pip
python -m pip install -r door/requirements.txt -t door/src/
python -m pip install -r requirements-door.txt -t door/src/
python -m pip install -r requirements-door-binary.txt --platform manylinux2014_x86_64 --only-binary=:all: -t door/src/

- name: package and deploy
if: github.ref == matrix.deploy_ref
Expand Down
6 changes: 0 additions & 6 deletions door/requirements.txt

This file was deleted.

6 changes: 0 additions & 6 deletions requirements-all.txt

This file was deleted.

1 change: 1 addition & 0 deletions requirements-door-binary.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
cryptography==41.0.3
6 changes: 6 additions & 0 deletions requirements-door.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
boto3=1.28.32
Flask==2.2.5
Flask-Cors==4.0.0
rsa==4.9
serverless_wsgi==3.0.2
PyJWT==2.8.0
Loading