diff --git a/examples/default/.copier/project.yml b/examples/default/.copier/project.yml index 35507f87..fb50832e 100644 --- a/examples/default/.copier/project.yml +++ b/examples/default/.copier/project.yml @@ -1,5 +1,5 @@ # Changes here will be overwritten by Copier; NEVER EDIT MANUALLY -_commit: 8a94b19 +_commit: f8672ee _src_path: . admin_email: admin@example.com author_email: jdoe@example.com diff --git a/examples/default/.just/documentation.just b/examples/default/.just/documentation.just index 7727ef77..4d399f2c 100644 --- a/examples/default/.just/documentation.just +++ b/examples/default/.just/documentation.just @@ -16,7 +16,7 @@ build LOCATION="docs/_build/html": cog # Install documentation dependencies [no-cd] install *ARGS: - $python -m uv pip sync {{ ARGS }} docs/requirements.txt + $python -m uv pip install {{ ARGS }} docs/requirements.txt # Generate documentation requirements [no-cd] diff --git a/examples/default/.just/python.just b/examples/default/.just/python.just index 244d2482..597f1ab0 100644 --- a/examples/default/.just/python.just +++ b/examples/default/.just/python.just @@ -27,7 +27,7 @@ coverage-report: test # Install dependencies [no-cd] install *ARGS: - $python -m uv pip sync {{ ARGS }} requirements.txt requirements.dev.txt + $python -m uv pip install {{ ARGS }} requirements.txt requirements.dev.txt # Generate requirements.txt file [no-cd] diff --git a/examples/default/default/settings.py b/examples/default/default/settings.py index 4334c82c..0795d2b6 100644 --- a/examples/default/default/settings.py +++ b/examples/default/default/settings.py @@ -230,7 +230,7 @@ SECRET_KEY = env.str( "SECRET_KEY", - default="d597cbbf5895a39b266f86a652be9255f84122868ad4b06e74810ec9874e3b77", + default="9ad065fdf7f6cd4f1770614b143eb34c7bed157a28944183d9f9350885b9f9f1", ) SECURE_HSTS_INCLUDE_SUBDOMAINS = not DEBUG diff --git a/examples/default/pyproject.toml b/examples/default/pyproject.toml index 2aa16854..3827f805 100644 --- a/examples/default/pyproject.toml +++ b/examples/default/pyproject.toml @@ -62,7 +62,6 @@ dev = [ "ipython", "model_bakery", "mypy", - "pip", "playwright==1.45.0", "pre-commit", "pytest", diff --git a/examples/postgis/.copier/project.yml b/examples/postgis/.copier/project.yml index 6540174e..bbc64a47 100644 --- a/examples/postgis/.copier/project.yml +++ b/examples/postgis/.copier/project.yml @@ -1,5 +1,5 @@ # Changes here will be overwritten by Copier; NEVER EDIT MANUALLY -_commit: a868025 +_commit: 1948d02 _src_path: . admin_email: admin@example.com author_email: jdoe@example.com diff --git a/examples/postgis/.just/documentation.just b/examples/postgis/.just/documentation.just index 7727ef77..4d399f2c 100644 --- a/examples/postgis/.just/documentation.just +++ b/examples/postgis/.just/documentation.just @@ -16,7 +16,7 @@ build LOCATION="docs/_build/html": cog # Install documentation dependencies [no-cd] install *ARGS: - $python -m uv pip sync {{ ARGS }} docs/requirements.txt + $python -m uv pip install {{ ARGS }} docs/requirements.txt # Generate documentation requirements [no-cd] diff --git a/examples/postgis/.just/python.just b/examples/postgis/.just/python.just index 244d2482..597f1ab0 100644 --- a/examples/postgis/.just/python.just +++ b/examples/postgis/.just/python.just @@ -27,7 +27,7 @@ coverage-report: test # Install dependencies [no-cd] install *ARGS: - $python -m uv pip sync {{ ARGS }} requirements.txt requirements.dev.txt + $python -m uv pip install {{ ARGS }} requirements.txt requirements.dev.txt # Generate requirements.txt file [no-cd] diff --git a/examples/postgis/default/settings.py b/examples/postgis/default/settings.py index 4dc7e0fe..b29670bb 100644 --- a/examples/postgis/default/settings.py +++ b/examples/postgis/default/settings.py @@ -230,7 +230,7 @@ SECRET_KEY = env.str( "SECRET_KEY", - default="a08dfa51696a941eeda3ec0886a991fd2c739e5f74067d5ab2db6b5a183688f9", + default="c0038ad1c6e3eaa39a35060a60d4afddca64e1bbd2007762f20ff13ed0969e60", ) SECURE_HSTS_INCLUDE_SUBDOMAINS = not DEBUG diff --git a/examples/postgis/pyproject.toml b/examples/postgis/pyproject.toml index 2aa16854..3827f805 100644 --- a/examples/postgis/pyproject.toml +++ b/examples/postgis/pyproject.toml @@ -62,7 +62,6 @@ dev = [ "ipython", "model_bakery", "mypy", - "pip", "playwright==1.45.0", "pre-commit", "pytest", diff --git a/examples/with_vite/.copier/project.yml b/examples/with_vite/.copier/project.yml index c5753a15..b5492c05 100644 --- a/examples/with_vite/.copier/project.yml +++ b/examples/with_vite/.copier/project.yml @@ -1,5 +1,5 @@ # Changes here will be overwritten by Copier; NEVER EDIT MANUALLY -_commit: bf15768 +_commit: f6ea40f _src_path: . admin_email: admin@example.com author_email: jdoe@example.com diff --git a/examples/with_vite/.just/documentation.just b/examples/with_vite/.just/documentation.just index 7727ef77..4d399f2c 100644 --- a/examples/with_vite/.just/documentation.just +++ b/examples/with_vite/.just/documentation.just @@ -16,7 +16,7 @@ build LOCATION="docs/_build/html": cog # Install documentation dependencies [no-cd] install *ARGS: - $python -m uv pip sync {{ ARGS }} docs/requirements.txt + $python -m uv pip install {{ ARGS }} docs/requirements.txt # Generate documentation requirements [no-cd] diff --git a/examples/with_vite/.just/python.just b/examples/with_vite/.just/python.just index fa1aa314..7cf149c2 100644 --- a/examples/with_vite/.just/python.just +++ b/examples/with_vite/.just/python.just @@ -27,7 +27,7 @@ coverage-report: test # Install dependencies [no-cd] install *ARGS: - $python -m uv pip sync {{ ARGS }} requirements.txt requirements.dev.txt + $python -m uv pip install {{ ARGS }} requirements.txt requirements.dev.txt # Generate requirements.txt file [no-cd] diff --git a/examples/with_vite/pyproject.toml b/examples/with_vite/pyproject.toml index e4b8a38b..3231c05a 100644 --- a/examples/with_vite/pyproject.toml +++ b/examples/with_vite/pyproject.toml @@ -63,7 +63,6 @@ dev = [ "ipython", "model_bakery", "mypy", - "pip", "playwright==1.45.0", "pre-commit", "pytest", diff --git a/examples/with_vite/with_vite/settings.py b/examples/with_vite/with_vite/settings.py index 3c5de18d..1b57f457 100644 --- a/examples/with_vite/with_vite/settings.py +++ b/examples/with_vite/with_vite/settings.py @@ -231,7 +231,7 @@ SECRET_KEY = env.str( "SECRET_KEY", - default="c869132005b2ff9a87e46be2d3a2ecbf1d32606754195f8f10309fda0ef9ba28", + default="cc341942cfab271a65b8eb36e69202d31336c270d7a0a6dba6c9259ed198e869", ) SECURE_HSTS_INCLUDE_SUBDOMAINS = not DEBUG