diff --git a/sandbox/cloud_functions/1.12.1/main.py b/sandbox/cloud_functions/1.12.1/main.py new file mode 120000 index 00000000..f05f7527 --- /dev/null +++ b/sandbox/cloud_functions/1.12.1/main.py @@ -0,0 +1 @@ +../main.py \ No newline at end of file diff --git a/sandbox/cloud_functions/1.12.1/requirements.in b/sandbox/cloud_functions/1.12.1/requirements.in new file mode 100644 index 00000000..6e475047 --- /dev/null +++ b/sandbox/cloud_functions/1.12.1/requirements.in @@ -0,0 +1,2 @@ +mypy==1.12.1 +typing-extensions diff --git a/sandbox/cloud_functions/1.12.1/requirements.txt b/sandbox/cloud_functions/1.12.1/requirements.txt new file mode 100644 index 00000000..dbfdc237 --- /dev/null +++ b/sandbox/cloud_functions/1.12.1/requirements.txt @@ -0,0 +1,14 @@ +# +# This file is autogenerated by pip-compile with Python 3.12 +# by the following command: +# +# pip-compile +# +mypy==1.12.1 + # via -r requirements.in +mypy-extensions==1.0.0 + # via mypy +typing-extensions==4.12.2 + # via + # -r requirements.in + # mypy diff --git a/sandbox/cloud_functions/latest b/sandbox/cloud_functions/latest index 32bd932f..6f165bc1 120000 --- a/sandbox/cloud_functions/latest +++ b/sandbox/cloud_functions/latest @@ -1 +1 @@ -1.12.0 \ No newline at end of file +1.12.1 \ No newline at end of file diff --git a/sandbox/docker/1.12.1/Dockerfile b/sandbox/docker/1.12.1/Dockerfile new file mode 100644 index 00000000..af821509 --- /dev/null +++ b/sandbox/docker/1.12.1/Dockerfile @@ -0,0 +1,11 @@ +FROM python:3.12-slim + +WORKDIR /tmp +COPY ./requirements.txt /tmp/ + +RUN pip install -r requirements.txt \ + && rm -rf /tmp/requirements.txt \ + && rm -rf /root/.cache + +USER nobody +CMD ["mypy"] diff --git a/sandbox/docker/1.12.1/requirements.in b/sandbox/docker/1.12.1/requirements.in new file mode 100644 index 00000000..6e475047 --- /dev/null +++ b/sandbox/docker/1.12.1/requirements.in @@ -0,0 +1,2 @@ +mypy==1.12.1 +typing-extensions diff --git a/sandbox/docker/1.12.1/requirements.txt b/sandbox/docker/1.12.1/requirements.txt new file mode 100644 index 00000000..dbfdc237 --- /dev/null +++ b/sandbox/docker/1.12.1/requirements.txt @@ -0,0 +1,14 @@ +# +# This file is autogenerated by pip-compile with Python 3.12 +# by the following command: +# +# pip-compile +# +mypy==1.12.1 + # via -r requirements.in +mypy-extensions==1.0.0 + # via mypy +typing-extensions==4.12.2 + # via + # -r requirements.in + # mypy diff --git a/sandbox/docker/latest b/sandbox/docker/latest index 32bd932f..6f165bc1 120000 --- a/sandbox/docker/latest +++ b/sandbox/docker/latest @@ -1 +1 @@ -1.12.0 \ No newline at end of file +1.12.1 \ No newline at end of file