diff --git a/examples/default/.copier/project.yml b/examples/default/.copier/project.yml index 2c253b88..35507f87 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: a5fe4de +_commit: 8a94b19 _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 93d2495b..7727ef77 100644 --- a/examples/default/.just/documentation.just +++ b/examples/default/.just/documentation.just @@ -21,7 +21,7 @@ install *ARGS: # Generate documentation requirements [no-cd] lock *ARGS: - $python -m uv pip compile pyproject.toml --output-file docs/requirements.txt --generate-hashes --extra docs {{ ARGS }} + $python -m uv pip compile pyproject.toml --output-file docs/requirements.txt --generate-hashes --extra docs --constraint requirements.txt {{ ARGS }} # Serve documentation locally [no-cd] diff --git a/examples/default/.just/python.just b/examples/default/.just/python.just index e7e5bb7d..244d2482 100644 --- a/examples/default/.just/python.just +++ b/examples/default/.just/python.just @@ -33,7 +33,7 @@ install *ARGS: [no-cd] lock *ARGS: $python -m uv pip compile pyproject.toml --output-file requirements.txt --generate-hashes {{ ARGS }} - $python -m uv pip compile pyproject.toml --output-file requirements.dev.txt --generate-hashes --extra dev {{ ARGS }} + $python -m uv pip compile pyproject.toml --output-file requirements.dev.txt --generate-hashes --extra dev --constraint requirements.txt {{ ARGS }} # Run tests using pytest within the 'app' container, with optional arguments [no-cd] diff --git a/examples/default/default/settings.py b/examples/default/default/settings.py index 5c020aa4..4334c82c 100644 --- a/examples/default/default/settings.py +++ b/examples/default/default/settings.py @@ -230,7 +230,7 @@ SECRET_KEY = env.str( "SECRET_KEY", - default="9c0064e5e618d58b821f1de8f632f484547c3a9c9b647b5233bcee7b0c18e262", + default="d597cbbf5895a39b266f86a652be9255f84122868ad4b06e74810ec9874e3b77", ) SECURE_HSTS_INCLUDE_SUBDOMAINS = not DEBUG diff --git a/examples/postgis/.copier/project.yml b/examples/postgis/.copier/project.yml index 24a5e17f..6540174e 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: 659709e +_commit: a868025 _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 93d2495b..7727ef77 100644 --- a/examples/postgis/.just/documentation.just +++ b/examples/postgis/.just/documentation.just @@ -21,7 +21,7 @@ install *ARGS: # Generate documentation requirements [no-cd] lock *ARGS: - $python -m uv pip compile pyproject.toml --output-file docs/requirements.txt --generate-hashes --extra docs {{ ARGS }} + $python -m uv pip compile pyproject.toml --output-file docs/requirements.txt --generate-hashes --extra docs --constraint requirements.txt {{ ARGS }} # Serve documentation locally [no-cd] diff --git a/examples/postgis/.just/python.just b/examples/postgis/.just/python.just index e7e5bb7d..244d2482 100644 --- a/examples/postgis/.just/python.just +++ b/examples/postgis/.just/python.just @@ -33,7 +33,7 @@ install *ARGS: [no-cd] lock *ARGS: $python -m uv pip compile pyproject.toml --output-file requirements.txt --generate-hashes {{ ARGS }} - $python -m uv pip compile pyproject.toml --output-file requirements.dev.txt --generate-hashes --extra dev {{ ARGS }} + $python -m uv pip compile pyproject.toml --output-file requirements.dev.txt --generate-hashes --extra dev --constraint requirements.txt {{ ARGS }} # Run tests using pytest within the 'app' container, with optional arguments [no-cd] diff --git a/examples/postgis/default/settings.py b/examples/postgis/default/settings.py index 8343c318..4dc7e0fe 100644 --- a/examples/postgis/default/settings.py +++ b/examples/postgis/default/settings.py @@ -230,7 +230,7 @@ SECRET_KEY = env.str( "SECRET_KEY", - default="5de32808c4ecb01dfd807483715854d60e4503e24b2fcebb055fa8903b3702bb", + default="a08dfa51696a941eeda3ec0886a991fd2c739e5f74067d5ab2db6b5a183688f9", ) SECURE_HSTS_INCLUDE_SUBDOMAINS = not DEBUG diff --git a/examples/with_vite/.copier/project.yml b/examples/with_vite/.copier/project.yml index 09d26850..c5753a15 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: 56d1ae0 +_commit: bf15768 _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 93d2495b..7727ef77 100644 --- a/examples/with_vite/.just/documentation.just +++ b/examples/with_vite/.just/documentation.just @@ -21,7 +21,7 @@ install *ARGS: # Generate documentation requirements [no-cd] lock *ARGS: - $python -m uv pip compile pyproject.toml --output-file docs/requirements.txt --generate-hashes --extra docs {{ ARGS }} + $python -m uv pip compile pyproject.toml --output-file docs/requirements.txt --generate-hashes --extra docs --constraint requirements.txt {{ ARGS }} # Serve documentation locally [no-cd] diff --git a/examples/with_vite/.just/python.just b/examples/with_vite/.just/python.just index feb287e0..fa1aa314 100644 --- a/examples/with_vite/.just/python.just +++ b/examples/with_vite/.just/python.just @@ -33,7 +33,7 @@ install *ARGS: [no-cd] lock *ARGS: $python -m uv pip compile pyproject.toml --output-file requirements.txt --generate-hashes {{ ARGS }} - $python -m uv pip compile pyproject.toml --output-file requirements.dev.txt --generate-hashes --extra dev {{ ARGS }} + $python -m uv pip compile pyproject.toml --output-file requirements.dev.txt --generate-hashes --extra dev --constraint requirements.txt {{ ARGS }} # Run tests using pytest within the 'app' container, with optional arguments [no-cd] diff --git a/examples/with_vite/with_vite/settings.py b/examples/with_vite/with_vite/settings.py index 1698fd1e..3c5de18d 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="ef5bd46ae6539ed64cb7a770f8574350a4f73ccdd65a573851f3b212d18ea84d", + default="c869132005b2ff9a87e46be2d3a2ecbf1d32606754195f8f10309fda0ef9ba28", ) SECURE_HSTS_INCLUDE_SUBDOMAINS = not DEBUG