Skip to content

Commit

Permalink
Merge pull request #812 from ymyzk/mypy-1.14.0
Browse files Browse the repository at this point in the history
Add mypy 1.14.0
  • Loading branch information
ymyzk authored Dec 21, 2024
2 parents a9ee3ed + b14c38e commit 66929a6
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.14.0/main.py
2 changes: 2 additions & 0 deletions sandbox/cloud_functions/1.14.0/requirements.in
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
mypy==1.14.0
typing-extensions
14 changes: 14 additions & 0 deletions sandbox/cloud_functions/1.14.0/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.14.0
# 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.14.0/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
FROM python:3.13-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.14.0/requirements.in
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
mypy==1.14.0
typing-extensions
14 changes: 14 additions & 0 deletions sandbox/docker/1.14.0/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.14.0
# 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 66929a6

Please sign in to comment.