build(python): python 3.12.x #55
4 changed files with 6 additions and 6 deletions
|
@ -1 +1 @@
|
||||||
3.10.11
|
3.12
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
FROM python:3.11-slim
|
FROM python:3.12-slim
|
||||||
|
|
||||||
ENV DEBIAN_FRONTEND=noninteractive
|
ENV DEBIAN_FRONTEND=noninteractive
|
||||||
|
|
||||||
|
@ -12,7 +12,7 @@ WORKDIR /app
|
||||||
|
|
||||||
COPY ./requirements.txt ./requirements.txt
|
COPY ./requirements.txt ./requirements.txt
|
||||||
|
|
||||||
RUN python3 -m pip install -U pip==23.0.0 pip-tools==7.1.0
|
RUN python3 -m pip install -U pip==23.3 pip-tools==7.3.0
|
||||||
RUN python3 -m pip install -r ./requirements.txt
|
RUN python3 -m pip install -r ./requirements.txt
|
||||||
|
|
||||||
COPY ./rotini ./rotini
|
COPY ./rotini ./rotini
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
[project]
|
[project]
|
||||||
name = "rotini"
|
name = "rotini"
|
||||||
version = "0.0.0"
|
version = "0.0.0"
|
||||||
requires-python = ">= 3.10"
|
requires-python = ">= 3.12"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"uvicorn[standard]",
|
"uvicorn[standard]",
|
||||||
"python-multipart",
|
"python-multipart",
|
||||||
|
|
|
@ -18,7 +18,7 @@ click==8.1.7
|
||||||
# uvicorn
|
# uvicorn
|
||||||
dill==0.3.7
|
dill==0.3.7
|
||||||
# via pylint
|
# via pylint
|
||||||
django==4.2.7
|
django==4.2.8
|
||||||
# via
|
# via
|
||||||
# -c requirements.txt
|
# -c requirements.txt
|
||||||
# djangorestframework
|
# djangorestframework
|
||||||
|
@ -118,7 +118,7 @@ tomli==2.0.1
|
||||||
# pytest
|
# pytest
|
||||||
tomlkit==0.12.3
|
tomlkit==0.12.3
|
||||||
# via pylint
|
# via pylint
|
||||||
typing-extensions==4.8.0
|
typing-extensions==4.9.0
|
||||||
# via
|
# via
|
||||||
# -c requirements.txt
|
# -c requirements.txt
|
||||||
# asgiref
|
# asgiref
|
||||||
|
|
Reference in a new issue