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 Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.11.0-slim-buster AS base
FROM python:3.14-slim-bookworm AS base

EXPOSE 8000

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ it's a simple and useful boilerplate for python projects using FastAPI framework

## Technology and Resources

- [Python 3.11](https://www.python.org/downloads/release/python-3110/) - **pre-requisite**
- [Python 3.14](https://www.python.org/downloads/release/python-3140/) - **pre-requisite**
- [Docker](https://www.docker.com/get-started) - **pre-requisite**
- [Docker Compose](https://docs.docker.com/compose/) - **pre-requisite**
- [Poetry](https://python-poetry.org/) - **pre-requisite**
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ license = "MIT"
package-mode = false

[tool.poetry.dependencies]
python = "^3.11"
python = "^3.14"
fastapi = "0.128.0"
uvicorn = "0.40.0"
alembic = "^1.16.1"
Expand Down Expand Up @@ -36,7 +36,7 @@ directory = "htmlcov"

[tool.ruff]
line-length = 120
target-version = "py311"
target-version = "py314"
exclude = ["run.py", "migration"]


Expand Down