Skip to content

Commit

Permalink
Merge pull request #764 from ymyzk/mypy-1.12.1
Browse files Browse the repository at this point in the history
Add mypy 1.12.1
  • Loading branch information
ymyzk authored Oct 21, 2024
2 parents b38e62c + 60a9262 commit 723d90d
Show file tree
Hide file tree
Showing 8 changed files with 46 additions and 2 deletions.
1 change: 1 addition & 0 deletions sandbox/cloud_functions/1.12.1/main.py
2 changes: 2 additions & 0 deletions sandbox/cloud_functions/1.12.1/requirements.in
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
mypy==1.12.1
typing-extensions
14 changes: 14 additions & 0 deletions sandbox/cloud_functions/1.12.1/requirements.txt
Original file line number Diff line number Diff line change
@@ -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
2 changes: 1 addition & 1 deletion sandbox/cloud_functions/latest
11 changes: 11 additions & 0 deletions sandbox/docker/1.12.1/Dockerfile
Original file line number Diff line number Diff line change
@@ -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"]
2 changes: 2 additions & 0 deletions sandbox/docker/1.12.1/requirements.in
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
mypy==1.12.1
typing-extensions
14 changes: 14 additions & 0 deletions sandbox/docker/1.12.1/requirements.txt
Original file line number Diff line number Diff line change
@@ -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
2 changes: 1 addition & 1 deletion sandbox/docker/latest

0 comments on commit 723d90d

Please sign in to comment.