Skip to content
This repository has been archived by the owner on Feb 22, 2023. It is now read-only.

Commit

Permalink
Pin dependencies in Pipfile (#989)
Browse files Browse the repository at this point in the history
  • Loading branch information
dhruvkb authored Oct 28, 2022
1 parent 492fd6e commit 24ad315
Show file tree
Hide file tree
Showing 4 changed files with 235 additions and 275 deletions.
99 changes: 50 additions & 49 deletions api/Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,57 +4,58 @@ url = "https://pypi.org/simple"
verify_ssl = true

[dev-packages]
ipython = "*"
pycodestyle = "*"
pytest-django = ">=3.5"
pytest-raises = "*"
remote-pdb = "*"
pre-commit = "*"
sphinx = "*"
sphinx-autobuild = "*"
furo = "*"
myst-parser = "*"
factory-boy = "*"
fakeredis = "*"
openapi-spec-validator = "*"
factory-boy = "~=3.2"
fakeredis = "~=1.9"
furo = "~=2022.9"
ipython = "~=8.5"
myst-parser = "~=0.18"
openapi-spec-validator = "~=0.5"
pre-commit = "~=2.20"
pycodestyle = "~=2.9"
pytest = "~=7.1"
pytest-django = "~=4.5"
pytest-raises = "~=0.11"
remote-pdb = "~=2.1"
sphinx = "~=5.2"
sphinx-autobuild = "~=2021.3"

[packages]
aws-requests-auth = "*"
boto3 = "*"
deepdiff = "*"
Django = "==4.1.2"
django-braces = "*"
django-cors-headers = "*"
django-oauth-toolkit = "==2.2.0"
django-redis = "*"
django-sslserver = "*"
django-storages = "*"
django-uuslug = "*"
djangorestframework = "*"
djangorestframework-xml = "*"
drf-yasg = "*"
elasticsearch-dsl = "==7.4.0"
future = {version = "*"}
gevent = "*"
grequests = "*"
hvac = "*"
ipaddress = {version = "*"}
piexif = "*"
Pillow = "*"
psycopg2 = "*"
PyJWT = "*"
python-xmp-toolkit = "*"
python3-openid = "*"
redlock-py = "*"
requests-oauthlib = "*"
wsgi-basic-auth = "*"
python-decouple = "*"
django-cron = "*"
gunicorn = "*"
sentry-sdk = "*"
django-tqdm = "*"
limit = "*"
django-log-request-id = "*"
aws-requests-auth = "~=0.4"
boto3 = "~=1.24"
deepdiff = "~=6.2"
Django = "~=4.1"
django-braces = "~=1.15"
django-cors-headers = "~=3.13"
django-cron = "~=0.6"
django-log-request-id = "~=2.0"
django-oauth-toolkit = "~=2.2"
django-redis = "~=5.2"
django-sslserver = "~=0.22"
django-storages = "~=1.13"
django-tqdm = "~=1.3"
django-uuslug = "~=2.0"
djangorestframework = "~=3.14"
djangorestframework-xml = "~=2.0"
drf-yasg = "~=1.21"
elasticsearch-dsl = "~=7.4"
future = "~=0.18"
gevent = "~=22.10"
grequests = "~=0.6"
gunicorn = "~=20.1"
hvac = "~=1.0"
ipaddress = "~=1.0"
limit = "~=0.2"
piexif = "~=1.1"
Pillow = "~=9.2"
psycopg2 = "~=2.9"
PyJWT = "~=2.6"
python-decouple = "~=3.6"
python-xmp-toolkit = "~=2.0"
python3-openid = "~=3.2"
redlock-py = "~=1.0"
requests-oauthlib = "~=1.3"
sentry-sdk = "~=1.10"
wsgi-basic-auth = "~=1.1"

[requires]
python_version = "3.10"
Loading

0 comments on commit 24ad315

Please sign in to comment.