Skip to content

Commit 9d70c48

Browse files
Merge pull request #50 from thatandromeda/update_deps
Update deps
2 parents 4fa5fd3 + 3bc5e00 commit 9d70c48

File tree

2 files changed

+16
-16
lines changed

2 files changed

+16
-16
lines changed

.github/workflows/hamlet_deploy.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -19,13 +19,13 @@ jobs:
1919
python_version: [3.8.10]
2020
steps:
2121
- name: Git clone on our repo
22-
uses: actions/checkout@v2
22+
uses: actions/checkout@v3
2323

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

2727
- name: Configure AWS credentials
28-
uses: aws-actions/configure-aws-credentials@v1
28+
uses: aws-actions/configure-aws-credentials@v2
2929
with:
3030
aws-access-key-id: ${{ secrets.aws_access_key_id }}
3131
aws-secret-access-key: ${{ secrets.aws_secret_access_key }}
@@ -39,7 +39,7 @@ jobs:
3939
needs: [build]
4040
steps:
4141
- name: Configure AWS credentials
42-
uses: aws-actions/configure-aws-credentials@v1
42+
uses: aws-actions/configure-aws-credentials@v2
4343
with:
4444
aws-access-key-id: ${{ secrets.aws_access_key_id }}
4545
aws-secret-access-key: ${{ secrets.aws_secret_access_key }}

Pipfile

+13-13
Original file line numberDiff line numberDiff line change
@@ -8,27 +8,27 @@ requests = "*"
88
refextract = {git = "https://github.com/MITLibraries/refextract.git"}
99

1010
[packages]
11-
django = {version = "~=2.2.28"}
12-
gunicorn = "*"
13-
gevent = "*"
11+
boto = "==2.48.0"
12+
chardet = "*"
1413
coverage = "*"
15-
nltk = "*"
16-
tika = "*"
17-
whitenoise = "*"
1814
dj-database-url = "*"
15+
django = "~=2.2.28"
16+
django-autocomplete-light = "~=3.3.0"
1917
django-compressor = "*"
18+
django-health-check = "*"
2019
django-libsass = "*"
21-
django-autocomplete-light = "~=3.3.0"
22-
python-magic = "*"
2320
django-simple-captcha = "*"
21+
gensim = "~=3.5.0"
22+
gevent = "*"
23+
gunicorn = "*"
24+
nltk = "*"
25+
tika = "*"
2426
pillow = "*"
27+
psycopg2 = "==2.8.6"
2528
python-docx = "*"
26-
chardet = "*"
27-
django-health-check = "*"
29+
python-magic = "*"
2830
raven = "*"
29-
boto = "==2.48.0"
30-
gensim = "~=3.5.0"
31-
psycopg2 = "==2.8.6"
31+
whitenoise = "*"
3232

3333
[requires]
3434
python_version = "3.8"

0 commit comments

Comments
 (0)