Skip to content

Commit b0418f0

Browse files
committed
update dependencies
1 parent 3bafea4 commit b0418f0

File tree

21 files changed

+957
-880
lines changed

21 files changed

+957
-880
lines changed

.gitlab-ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ deploy_live:
99
- sudo /bin/rm -rf /home/peeljobs/peeljobs/; cp -r . /home/peeljobs/peeljobs
1010
- source /home/peeljobs/env/bin/activate
1111
- pip install pipenv
12-
- pipenv install
12+
- pipenv install -d
1313
- python /home/peeljobs/peeljobs/manage_server.py migrate --noinput
1414
- sudo /usr/bin/supervisorctl restart all
1515
tags:

.runcode.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ onCreate:
2121
cp ENV.md .env
2222
pip install -U pip
2323
pip install pipenv
24-
pipenv install
24+
pipenv install -d
2525
python manage.py migrate
2626
python manage.py loaddata industries
2727
python manage.py loaddata qualification

.travis.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ env:
2020

2121
install:
2222
- pip install pipenv
23-
- pipenv install
23+
- pipenv install -d
2424

2525
#new
2626
#creating a database

Pipfile

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -5,24 +5,17 @@ name = "pypi"
55

66
[packages]
77
arrow = "==1.2.3"
8-
behave-django = "==1.4.0"
9-
black = "==25.1.0"
108
boto3 = "==1.24.78"
11-
bpython = "==0.23"
12-
coverage = "==6.4.4"
139
django = "==4.2.19"
14-
django-behave = "==0.1.6"
1510
django-celery-beat = "==2.7.0"
1611
django-compressor = "==4.1"
1712
django-cors-headers = "==3.13.0"
18-
django-debug-toolbar-template-profiler = "==2.1.0"
1913
django-haystack = "==3.2.1"
2014
django-ses = "==4.4.0"
2115
django-ses-gateway = "==0.1.1"
2216
django-tellme = {git = "https://github.com/ludrao/django-tellme"}
2317
elasticsearch = "==7.17.6"
2418
google-api-python-client = "==2.62.0"
25-
prospector = "==1.7.7"
2619
psycopg2-binary = "==2.9.3"
2720
python-dotenv = "==0.21.0"
2821
python-memcached = "==1.59"
@@ -34,8 +27,6 @@ pyjwt = "==2.5.0"
3427
djangorestframework = "==3.15.2"
3528
djangorestframework-simplejwt = "==5.5.0"
3629
sentry-sdk = "==2.22.0"
37-
pip-check = "==2.7"
38-
flake8-polyfill = "==1.0.2"
3930
django-pymemcache = "==1.0.0"
4031
contextlib2 = "==21.6.0"
4132
django-blog-it = "==0.3.1"
@@ -47,6 +38,15 @@ olefile = "==0.46"
4738
tinys3 = "==0.1.12"
4839

4940
[dev-packages]
41+
behave-django = "==1.4.0"
42+
django-behave = "==0.1.6"
43+
black = "==25.1.0"
44+
bpython = "==0.23"
45+
coverage = "==7.6.12"
46+
django-debug-toolbar-template-profiler = "==2.1.0"
47+
prospector = "==1.15.1"
48+
flake8-polyfill = "==1.0.2"
49+
pip-check = "==2.9"
5050

5151
[requires]
5252
python_version = "3.10"

Pipfile.lock

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

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ add the following to your path
6969
##### Install requirements
7070

7171
```bash
72-
pipenv install
72+
pipenv install -d
7373
```
7474

7575
For env variables, refer to env.md in source directory and you need to create a .env file to keep all env variables with their respective values.

agency/views.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
from django.urls import reverse
77
from django.db.models import Q
8-
from django.http.response import HttpResponse, HttpResponseRedirect
8+
from django.http.response import HttpResponse, HttpResponseRedirect, JsonResponse
99
from django.shortcuts import get_object_or_404, render
1010

1111
from mpcomp.views import (

candidate/views.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
import re
77

88
from django.shortcuts import render
9-
from django.http.response import HttpResponse, HttpResponseRedirect
9+
from django.http.response import HttpResponse, HttpResponseRedirect, JsonResponse
1010
from django.conf import settings
1111
from django.contrib.auth.decorators import login_required
1212
from django.utils import timezone

dashboard/views.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
from django.urls import reverse
1616
from django.db.models import Count, Q
1717
from django.forms import modelformset_factory
18-
from django.http.response import HttpResponse, HttpResponseRedirect
18+
from django.http.response import HttpResponse, HttpResponseRedirect, JsonResponse
1919
from django.shortcuts import get_object_or_404, render
2020
from django.template import loader
2121
from django.template.defaultfilters import slugify

docs/source/setup/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ Configuration of Peeljobs
6969
sudo apt install nodejs
7070
npm install -g sass
7171
pip install pipenv
72-
pipenv install
72+
pipenv install -d
7373

7474

7575
9. We used postgressql here open shell and create the following database

0 commit comments

Comments
 (0)