Skip to content

Commit cf7d2b4

Browse files
authored
Merge pull request #110 from bnjmn/upgrade-twilio
Upgrade Twilio and dockerfile (python 3.13-slim)
2 parents bf1006c + 770f533 commit cf7d2b4

File tree

4 files changed

+1021
-812
lines changed

4 files changed

+1021
-812
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

+6-5
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,16 @@ 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"
14+
aiohttp = "*"
1515
signalwire = {editable = true,path = "."}
16-
aiohttp = "3.9.5"
16+
six = "*"
17+
twilio = ">=7.0.0,<7.6.0"
1718

1819
[requires]

0 commit comments

Comments
 (0)