Skip to content

Commit

Permalink
fix: loosen runtime dependency specification (#231)
Browse files Browse the repository at this point in the history
  • Loading branch information
lsorber authored Apr 19, 2024
1 parent e860ec0 commit 27b6ceb
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions {{ cookiecutter.__project_name_kebab_case }}/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,19 +25,19 @@ version_provider = "poetry"

[tool.poetry.dependencies] # https://python-poetry.org/docs/dependency-specification/
{%- if cookiecutter.with_fastapi_api|int %}
coloredlogs = "^15.0.1"
fastapi = { extras = ["all"], version = "^0.110.1" }
gunicorn = "^21.2.0"
coloredlogs = ">=15.0.1"
fastapi = { extras = ["all"], version = ">=0.110.1" }
gunicorn = ">=21.2.0"
{%- endif %}
{%- if cookiecutter.project_type == "app" %}
poethepoet = "^0.25.0"
poethepoet = ">=0.25.0"
{%- endif %}
python = ">={{ cookiecutter.python_version }},<4.0"
{%- if cookiecutter.with_typer_cli|int %}
typer = { extras = ["all"], version = "^0.12.0" }
typer = { extras = ["all"], version = ">=0.12.0" }
{%- endif %}
{%- if cookiecutter.with_fastapi_api|int %}
uvicorn = { extras = ["standard"], version = "^0.29.0" }
uvicorn = { extras = ["standard"], version = ">=0.29.0" }
{%- endif %}

[tool.poetry.group.test.dependencies] # https://python-poetry.org/docs/master/managing-dependencies/
Expand Down

0 comments on commit 27b6ceb

Please sign in to comment.