Skip to content

Commit

Permalink
update packages in Pipfile
Browse files Browse the repository at this point in the history
  • Loading branch information
MarkusNeblung committed Apr 25, 2024
1 parent 1b6bc63 commit 8ada22d
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions {{ cookiecutter.project_slug }}/Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,15 @@ verify_ssl = true
name = "pypi"

[packages]
django = "~=4.1" # web framework
psycopg = { version = "~=3.0", extras = ["binary"] } # database driver
django = "~=5.0" # web framework
psycopg = { version = "~=3.1", extras = ["binary"] } # database driver
environs = { extras = ["django"] } # configuration via env variables
simple-openid-connect = {extras = ["djangorestframework", "django"], version = "~=0.5.3" } # mafiasi-identity auth
djangorestframework = "~=3.14.0" # api framework ontop of django
simple-openid-connect = {extras = ["djangorestframework", "django"], version = "~=1.0.0" } # mafiasi-identity auth
djangorestframework = "~=3.15.0" # api framework ontop of django
drf-spectacular = { extras = ["sidecar"] } # openapi schema generation for the api
django-cors-headers = "~=4.2.0" # CORS security header configuration for django
opentelemetry-api = "~=1.22.0" # abstract api for creating telemetry measurements
opentelemetry-sdk = "~=1.22.0" # implementation of telemetry measurement colelction and config
django-cors-headers = "~=4.3.0" # CORS security header configuration for django
opentelemetry-api = "~=1.24.0" # abstract api for creating telemetry measurements
opentelemetry-sdk = "~=1.24.0" # implementation of telemetry measurement colelction and config
opentelemetry-exporter-prometheus = "*" # translation of telemetry measurements into prometheus exposition format

[dev-packages]
Expand Down

0 comments on commit 8ada22d

Please sign in to comment.