Skip to content

Commit

Permalink
pin dependencies in pipenv (#1705)
Browse files Browse the repository at this point in the history
  • Loading branch information
sainak authored Dec 7, 2023
1 parent 8720fe4 commit d481c90
Show file tree
Hide file tree
Showing 3 changed files with 694 additions and 593 deletions.
4 changes: 4 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@ updates:
directory: "/"
schedule:
interval: "weekly"
groups:
boto:
patterns:
- "boto*"

- package-ecosystem: "docker"
directory: "/docker"
Expand Down
106 changes: 53 additions & 53 deletions Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,73 +4,73 @@ verify_ssl = true
name = "pypi"

[packages]
argon2-cffi = "*"
authlib = "==1.2.*"
boto3 = "*"
celery = "==5.*"
"fhir.resources" = "==6.5.0"
django = "==4.2.*"
django-environ = "*"
django-cors-headers = "==4.*"
django-filter = "==23.*"
argon2-cffi = "==23.1.0"
authlib = "==1.2.1"
boto3 = "==1.28.50"
celery = "==5.3.4"
django = "==4.2.5"
django-environ = "==0.11.2"
django-cors-headers = "==4.2.0"
django-filter = "==23.2"
django-hardcopy = "==0.1.4"
django-maintenance-mode = "==0.18.0"
django-model-utils = "==4.3.*"
django-model-utils = "==4.3.1"
django-multiselectfield = "==0.1.12"
django-queryset-csv = "==1.1.0"
django-ratelimit = "==4.1.0"
django-redis = "==5.*"
django-redis = "==5.3.0"
django-rest-passwordreset = "==1.3.0"
django-simple-history = "==3.3.0"
djangoql = "==0.17.*"
djangorestframework = "==3.14.*"
djangorestframework-simplejwt = "==5.*"
djangoql = "==0.17.1"
djangorestframework = "==3.14.0"
djangorestframework-simplejwt = "==5.3.0"
dry-rest-permissions = "==0.1.10"
drf-nested-routers = "==0.93.*"
drf-spectacular = "*"
healthy-django = ">=0.1.0"
jsonschema = "==4.*"
drf-nested-routers = "==0.93.4"
drf-spectacular = "==0.26.4"
"fhir.resources" = "==6.5.0"
gunicorn = "==21.2.0"
healthy-django = "==0.1.0"
jsonschema = "==4.19.0"
jwcrypto = "==1.5.0"
littletable = "==2.*"
pillow = "*"
psycopg = "*"
pycryptodome = "==3.*"
pydantic = "==1.*" # fix for fhir.resources < 7.0.2
pyjwt = "==2.*"
python-slugify = "*"
littletable = "==2.2.3"
newrelic = "==9.0.0"
pillow = "==10.0.0"
psycopg = "==3.1.10"
pycryptodome = "==3.19.0"
pydantic = "==1.10.12" # fix for fhir.resources < 7.0.2
pyjwt = "==2.8.0"
python-slugify = "==8.0.1"
pywebpush = "==1.14.0"
redis = {extras = ["hiredis"] }
requests = "*"
whitenoise = "*"
gunicorn = "*"
newrelic = "*"
sentry-sdk = "*"
redis = {extras = ["hiredis"], version = "==5.0.0"}
requests = "==2.31.0"
sentry-sdk = "==1.30.0"
whitenoise = "==6.5.0"

[dev-packages]
black = "*"
boto3-stubs = {extras = ["s3", "boto3"], version = "*"}
coverage = "*"
debugpy = "*"
django-coverage-plugin = "*"
django-debug-toolbar = "*"
django-extensions = "*"
django-silk = "*"
django-stubs = "*"
djangorestframework-stubs = "*"
factory-boy = "*"
flake8 = "*"
isort = "*"
mypy = "*"
pre-commit = "*"
tblib = "*"
watchdog = "*"
werkzeug = "*"
freezegun = "*"
ipython = "*"
black = "==23.9.1"
boto3-stubs = {extras = ["s3", "boto3"], version = "==1.28.50"}
coverage = "==7.3.1"
debugpy = "==1.7.0"
django-coverage-plugin = "==3.1.0"
django-debug-toolbar = "==4.2.0"
django-extensions = "==3.2.3"
django-silk = "==5.0.3"
django-stubs = "==4.2.4"
djangorestframework-stubs = "==3.14.2"
factory-boy = "==3.3.0"
flake8 = "==6.1.0"
freezegun = "==1.2.2"
ipython = "==8.15.0"
isort = "==5.12.0"
mypy = "==1.5.1"
pre-commit = "==3.4.0"
tblib = "==2.0.0"
watchdog = "==3.0.0"
werkzeug = "==2.3.7"

[docs]
furo = "*"
sphinx = "*"
furo = "==2023.9.10"
sphinx = "==7.2.6"

[requires]
python_version = "3.11"
Loading

0 comments on commit d481c90

Please sign in to comment.