Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion cookiecutter.json
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
"https"
],
"__template_repo": "https://github.com/btr1975/cookiecutter-python-fastapi-openapi",
"__template_version": "2.0.6",
"__template_version": "2.0.7",
"_new_lines": "\n",
"_copy_without_render": [
"{{cookiecutter.__app_name}}/templates",
Expand Down
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "cookiecutter-python-fastapi-openapi"
version = "2.0.6"
version = "2.0.7"
dynamic = ["readme"]
requires-python = ">=3.10"
description = "A cookiecutter for a python FastAPI Application"
Expand Down Expand Up @@ -43,7 +43,7 @@ classifiers = [

dependencies = [
"cookiecutter~=2.7.1",
"urllib3>=2.6.3",
"urllib3>=2.7.0",
]

[dependency-groups]
Expand Down Expand Up @@ -103,4 +103,4 @@ exclude_dirs = [

[tool.uv]
keyring-provider = "subprocess"
native-tls = true
system-certs = true
6 changes: 3 additions & 3 deletions requirements-dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -723,9 +723,9 @@ tzdata==2025.2 \
--hash=sha256:1a403fada01ff9221ca8044d701868fa132215d84beb92242d9acd2147f667a8 \
--hash=sha256:b60a638fcc0daffadf82fe0f57e53d06bdec2f36c4df66280ae79bce6bd6f2b9
# via arrow
urllib3==2.6.3 \
--hash=sha256:1b62b6884944a57dbe321509ab94fd4d3b307075e0c2eae991ac71ee15ad38ed \
--hash=sha256:bf272323e553dfb2e87d9bfd225ca7b0f467b919d7bbd355436d3fd37cb0acd4
urllib3==2.7.0 \
--hash=sha256:231e0ec3b63ceb14667c67be60f2f2c40a518cb38b03af60abc813da26505f4c \
--hash=sha256:9fb4c81ebbb1ce9531cce37674bbc6f1360472bc18ca9a553ede278ef7276897
# via
# cookiecutter-python-fastapi-openapi
# requests
6 changes: 3 additions & 3 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -299,9 +299,9 @@ tzdata==2025.2 \
--hash=sha256:1a403fada01ff9221ca8044d701868fa132215d84beb92242d9acd2147f667a8 \
--hash=sha256:b60a638fcc0daffadf82fe0f57e53d06bdec2f36c4df66280ae79bce6bd6f2b9
# via arrow
urllib3==2.6.3 \
--hash=sha256:1b62b6884944a57dbe321509ab94fd4d3b307075e0c2eae991ac71ee15ad38ed \
--hash=sha256:bf272323e553dfb2e87d9bfd225ca7b0f467b919d7bbd355436d3fd37cb0acd4
urllib3==2.7.0 \
--hash=sha256:231e0ec3b63ceb14667c67be60f2f2c40a518cb38b03af60abc813da26505f4c \
--hash=sha256:9fb4c81ebbb1ce9531cce37674bbc6f1360472bc18ca9a553ede278ef7276897
# via
# cookiecutter-python-fastapi-openapi
# requests
10 changes: 5 additions & 5 deletions uv.lock

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

3 changes: 2 additions & 1 deletion {{cookiecutter.git_repo_name}}/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@ dependencies = [
"pydantic",
"uvicorn",
{% if cookiecutter.use_niquests == 'y' %}"niquests",{% endif %}
{% if cookiecutter.use_niquests == 'y' %}"urllib3>=2.7.0",{% endif %}
{% if cookiecutter.use_cryptography == 'y' %}"cryptography",{% endif %}
]

Expand Down Expand Up @@ -151,6 +152,6 @@ exclude_dirs = [

[tool.uv]
keyring-provider = "subprocess"
native-tls = true
system-certs = true

{% endif %}
1 change: 1 addition & 0 deletions {{cookiecutter.git_repo_name}}/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,5 @@ fastapi
pydantic
uvicorn
{% if cookiecutter.use_niquests == 'y' %}niquests{% endif %}
{% if cookiecutter.use_niquests == 'y' %}urllib3>=2.7.0{% endif %}
{% if cookiecutter.use_cryptography == 'y' %}cryptography{% endif %}
Loading