Skip to content

Commit

Permalink
upgraded pydal and pluralize dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
mdipierro committed Nov 12, 2023
1 parent 714073e commit ba4810e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion py4web/server_adapters.py
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ def get_gunicorn_vars(self, env_file="gunicorn.saenv", env_key='GUNICORN_'):
def check_kv(kx, vx):
if kx and vx and kx != "bind":
if vx.startswith("{") and vx.endswith("}"):
vt = re.sub(",\s*\}", "}", vx)
vt = re.sub(r",\s*\}", "}", vx)
vx = json.loads(vt.replace("'", '"'))
if vx == "None":
vx = None
Expand Down
4 changes: 2 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ requests
threadsafevariable >= 20230507.1
pyjwt >= 2.0.1
pycryptodome
pluralize >= 20230507.1
pluralize >= 20231008.1
rocket3 >= 20230507.1
yatl >= 20230507.3
pydal >= 20230521.1
pydal >= 20231111.1
watchgod >= 0.6

# optional modules:
Expand Down

0 comments on commit ba4810e

Please sign in to comment.