Skip to content

Commit d2febfc

Browse files
committed
Upgrade Twilio (among all dependencies)
Bumps dockerfile to python:3.13-slim
1 parent 635ece3 commit d2febfc

File tree

4 files changed

+1022
-808
lines changed

4 files changed

+1022
-808
lines changed

Dockerfile

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
1-
FROM python:3.10-slim
1+
FROM python:3.13-slim
22

33
COPY . /app
44
WORKDIR /app
55

6+
RUN apt-get update && apt-get install -y build-essential
7+
68
RUN pip install --upgrade pip && pip install pipenv && pipenv install --dev
79

810
CMD ["pipenv", "run", "pytest"]

Pipfile

+5-5
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,15 @@ url = "https://pypi.org/simple"
44
verify_ssl = true
55

66
[dev-packages]
7-
pytest-runner = "*"
8-
pytest = "*"
9-
vcrpy = "*"
107
pylint = "*"
8+
pytest = "*"
119
pytest-asyncio = "*"
10+
pytest-runner = "*"
11+
vcrpy = "*"
1212

1313
[packages]
14-
twilio = "==6.54.0"
15-
signalwire = {editable = true,path = "."}
1614
aiohttp = "*"
15+
signalwire = {editable = true,path = "."}
16+
twilio = "*"
1717

1818
[requires]

0 commit comments

Comments
 (0)