Skip to content

Commit bc392f2

Browse files
authored
🔢 [GH-79] Bump core deps (#80)
* chore: bump core deps [#79] * docs: fix typo [#79]
1 parent b1bc531 commit bc392f2

3 files changed

Lines changed: 10 additions & 7 deletions

File tree

docs/source/project_features/deployments/digitalocean.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
DigitalOcean
22
============
33

4-
There a couple of house keeping steps to take before deploying to DigitalOcean. You can
4+
There are a couple of house keeping steps to take before deploying to DigitalOcean. You can
55
read more about the steps `here <https://docs.digitalocean.com/products/app-platform/how-to/deploy-from-github-actions/#prerequisites>`_.
66

77
.. note::

hooks/post_gen_project.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,10 +33,13 @@ def rename_file(old: str, new: str):
3333
for p in DEPLOYMENT_FILES:
3434
remove_file(p)
3535

36+
remove_file("bin/provision-app.sh")
37+
3638

3739
if "{{ cookiecutter.deployments }}" == "render":
3840
print("Removing digitalocean deployment file(s)...")
3941
remove_file("digitalocean.yaml")
42+
remove_file("bin/provision-app.sh")
4043

4144

4245
if "{{ cookiecutter.deployments }}" == "digitalocean":

{{ cookiecutter.project_slug }}/{{ cookiecutter.backend_container_name }}/pyproject.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,18 +9,18 @@ requires-python = ">={{ cookiecutter.py_version }}"
99
readme = "README.md"
1010
dependencies = [
1111
"alembic==1.13.2",
12-
"sqlalchemy==2.0.34",
12+
"sqlalchemy==2.0.41",
1313
"psycopg[binary]==3.1.13",
14-
"fastapi==0.114.0",
15-
"pydantic-settings==2.4.0",
16-
"sqlmodel==0.0.21",
14+
"fastapi==0.116.1",
15+
"pydantic-settings==2.10.1",
16+
"sqlmodel==0.0.24",
1717
{%- if cookiecutter.use_celery == "yes" %}
1818
"redis==4.6.0",
1919
"fastapi-cache2[redis]==0.2.2",
2020
"celery[beat]==5.2.7",{%- endif %}
21-
"uvicorn[standard]==0.23.2",
21+
"uvicorn[standard]==0.35.0",
2222
"PyYAML==6.0.1",
23-
"httpx==0.25.0",
23+
"httpx==0.28.1",
2424
"gunicorn==23.0.0",
2525
{%- if cookiecutter.use_sentry == "yes" %}
2626
"sentry-sdk[fastapi]==2.33.0",{%- endif %}

0 commit comments

Comments
 (0)