Skip to content

Commit

Permalink
Merge pull request #434 from ymyzk/mypy-1.5.0
Browse files Browse the repository at this point in the history
Add mypy 1.5.0
  • Loading branch information
ymyzk authored Aug 11, 2023
2 parents 2ef9588 + 5068d4a commit 5ab6763
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.5.0/main.py
2 changes: 2 additions & 0 deletions sandbox/cloud_functions/1.5.0/requirements.in
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
mypy==1.5.0
typing-extensions
14 changes: 14 additions & 0 deletions sandbox/cloud_functions/1.5.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.11
# by the following command:
#
# pip-compile
#
mypy==1.5.0
# via -r requirements.in
mypy-extensions==1.0.0
# via mypy
typing-extensions==4.7.1
# via
# -r requirements.in
# mypy
2 changes: 1 addition & 1 deletion sandbox/cloud_functions/latest
11 changes: 11 additions & 0 deletions sandbox/docker/1.5.0/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
FROM python:3.11-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.5.0/requirements.in
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
mypy==1.5.0
typing-extensions
14 changes: 14 additions & 0 deletions sandbox/docker/1.5.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.11
# by the following command:
#
# pip-compile
#
mypy==1.5.0
# via -r requirements.in
mypy-extensions==1.0.0
# via mypy
typing-extensions==4.7.1
# via
# -r requirements.in
# mypy
2 changes: 1 addition & 1 deletion sandbox/docker/latest

0 comments on commit 5ab6763

Please sign in to comment.