Skip to content

Commit

Permalink
CHORE: Python package updates (#1344)
Browse files Browse the repository at this point in the history
  • Loading branch information
jamesbiggs authored Sep 27, 2023
1 parent 1ee1400 commit 79b8745
Show file tree
Hide file tree
Showing 3 changed files with 93 additions and 65 deletions.
8 changes: 8 additions & 0 deletions config/settings/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,7 @@
SITE_ID = 1

MIDDLEWARE = [
"allauth.account.middleware.AccountMiddleware",
"django.contrib.sessions.middleware.SessionMiddleware",
"django.middleware.common.CommonMiddleware",
"django.middleware.csrf.CsrfViewMiddleware",
Expand Down Expand Up @@ -282,6 +283,13 @@

PASSWORD_REQUIRED_TEMPLATE = "password_pages/password_required.html"

# Eventbrite client

EVENTBRITE_KEY = os.getenv("EVENTBRITE_KEY")
EVENTBRITE_SECRET = os.getenv("EVENTBRITE_SECRET")
EVENTBRITE_PRIVATE_TOKEN = os.getenv("EVENTBRITE_PRIVATE_TOKEN")
EVENTBRITE_PUBLIC_TOKEN = os.getenv("EVENTBRITE_PUBLIC_TOKEN")

# Kong client

KONG_CLIENT_BASE_URL = os.getenv("KONG_CLIENT_BASE_URL")
Expand Down
113 changes: 66 additions & 47 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

37 changes: 19 additions & 18 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,36 +5,37 @@ description = ""
authors = ["James Biggs <[email protected]>"]

[tool.poetry.dependencies]
python = "~3.11"
gunicorn = "~21.2"
bleach = "~6.0"
Django = "~4.2"
wagtail = "~5.1"
django-allauth = "~0.57"
django-birdbath = "~1.1"
django-redis = "~5.3"
django-taggit = "~4.0"
eventbrite = "~3.3"
gunicorn = "~21.2"
platformshconfig = "~2.4"
pyquery = "~2.0"
wagtail-generic-chooser = "~0.6"
psycopg2-binary = "~2.9"
wagtailmedia = "~0.14"
django-allauth = "~0.55"
pyquery = "~2.0"
python = "~3.11"
python-magic = "~0.4"
django-redis = "~5.3"
sentry-sdk = "~1.31"
wagtail = "~5.1"
wagtail-font-awesome-svg = "~0.0"
django-birdbath = "~1.1"
bleach = "~6.0"
sentry-sdk = "~1.30"
wagtail-metadata = "~4.0"
wagtail-generic-chooser = "~0.6"
wagtailmedia = "~0.14"
wagtail-metadata = "~5.0"

[tool.poetry.dev-dependencies]
black = "~23.7"
ipdb = "~0.13"
django-extensions = "~3.2"
responses = "~0.23"
black = "~23.9"
coverage = "~7.3"
django-debug-toolbar = "~4.2"
django-extensions = "~3.2"
flake8 = "~6.1"
ipdb = "~0.13"
isort = "~5.12"
pymdown-extensions = "~10.3"
mkdocs-material = "~9.2"
django-debug-toolbar = "~4.2"
pymdown-extensions = "~10.3"
responses = "~0.23"
wagtail-factories = "~4.1"

[build-system]
Expand Down

0 comments on commit 79b8745

Please sign in to comment.