Skip to content

Commit

Permalink
Merge pull request #50 from thatandromeda/update_deps
Browse files Browse the repository at this point in the history
Update deps
  • Loading branch information
thatandromeda authored Mar 11, 2023
2 parents 4fa5fd3 + 3bc5e00 commit 9d70c48
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 16 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/hamlet_deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,13 @@ jobs:
python_version: [3.8.10]
steps:
- name: Git clone on our repo
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Create zip deployment package
run: zip -r ${{ env.DEPLOY_PACKAGE_NAME }} ./ -x *.git*

- name: Configure AWS credentials
uses: aws-actions/configure-aws-credentials@v1
uses: aws-actions/configure-aws-credentials@v2
with:
aws-access-key-id: ${{ secrets.aws_access_key_id }}
aws-secret-access-key: ${{ secrets.aws_secret_access_key }}
Expand All @@ -39,7 +39,7 @@ jobs:
needs: [build]
steps:
- name: Configure AWS credentials
uses: aws-actions/configure-aws-credentials@v1
uses: aws-actions/configure-aws-credentials@v2
with:
aws-access-key-id: ${{ secrets.aws_access_key_id }}
aws-secret-access-key: ${{ secrets.aws_secret_access_key }}
Expand Down
26 changes: 13 additions & 13 deletions Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,27 +8,27 @@ requests = "*"
refextract = {git = "https://github.com/MITLibraries/refextract.git"}

[packages]
django = {version = "~=2.2.28"}
gunicorn = "*"
gevent = "*"
boto = "==2.48.0"
chardet = "*"
coverage = "*"
nltk = "*"
tika = "*"
whitenoise = "*"
dj-database-url = "*"
django = "~=2.2.28"
django-autocomplete-light = "~=3.3.0"
django-compressor = "*"
django-health-check = "*"
django-libsass = "*"
django-autocomplete-light = "~=3.3.0"
python-magic = "*"
django-simple-captcha = "*"
gensim = "~=3.5.0"
gevent = "*"
gunicorn = "*"
nltk = "*"
tika = "*"
pillow = "*"
psycopg2 = "==2.8.6"
python-docx = "*"
chardet = "*"
django-health-check = "*"
python-magic = "*"
raven = "*"
boto = "==2.48.0"
gensim = "~=3.5.0"
psycopg2 = "==2.8.6"
whitenoise = "*"

[requires]
python_version = "3.8"

0 comments on commit 9d70c48

Please sign in to comment.