Skip to content

Commit

Permalink
Add M1 support and update dependencies.
Browse files Browse the repository at this point in the history
  • Loading branch information
tillahoffmann committed Apr 16, 2021
1 parent fa36a25 commit c06d3c7
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 4 deletions.
7 changes: 6 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,12 @@ PYTHON_VERSIONS = 3.6 3.7 3.8
REQUIREMENTS = $(addprefix requirements/,${PYTHON_VERSIONS:=.txt})
TESTS = $(addprefix tests/,${PYTHON_VERSIONS})
IMAGES = $(addprefix image/,${PYTHON_VERSIONS})
RUN = docker run --rm -it
ARCH = $(shell arch)
ifeq (${ARCH}, arm64)
RUN = docker run --rm -it --platform linux/amd64
else
RUN = docker run --rm -it
endif
.PHONY : docs

# Default target
Expand Down
3 changes: 2 additions & 1 deletion requirements/3.6.txt
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,8 @@ jinja2==2.11.2
# via sphinx
jsonschema==3.2.0
# via docker-compose
kafka-python==2.0.2 # via testcontainers
kafka-python==2.0.2
# via testcontainers
markupsafe==1.1.1
# via jinja2
mccabe==0.6.1
Expand Down
3 changes: 2 additions & 1 deletion requirements/3.7.txt
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,8 @@ jinja2==2.11.2
# via sphinx
jsonschema==3.2.0
# via docker-compose
kafka-python==2.0.2 # via testcontainers
kafka-python==2.0.2
# via testcontainers
markupsafe==1.1.1
# via jinja2
mccabe==0.6.1
Expand Down
3 changes: 2 additions & 1 deletion requirements/3.8.txt
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,8 @@ jinja2==2.11.2
# via sphinx
jsonschema==3.2.0
# via docker-compose
kafka-python==2.0.2 # via testcontainers
kafka-python==2.0.2
# via testcontainers
markupsafe==1.1.1
# via jinja2
mccabe==0.6.1
Expand Down

0 comments on commit c06d3c7

Please sign in to comment.