File tree Expand file tree Collapse file tree 4 files changed +1021
-812
lines changed Expand file tree Collapse file tree 4 files changed +1021
-812
lines changed Original file line number Diff line number Diff line change 1- FROM python:3.10 -slim
1+ FROM python:3.13 -slim
22
33COPY . /app
44WORKDIR /app
55
6+ RUN apt-get update && apt-get install -y build-essential
7+
68RUN pip install --upgrade pip && pip install pipenv && pipenv install --dev
79
810CMD ["pipenv" , "run" , "pytest" ]
Original file line number Diff line number Diff line change @@ -4,15 +4,16 @@ url = "https://pypi.org/simple"
44verify_ssl = true
55
66[dev-packages ]
7- pytest-runner = " *"
8- pytest = " *"
9- vcrpy = " *"
107pylint = " *"
8+ pytest = " *"
119pytest-asyncio = " *"
10+ pytest-runner = " *"
11+ vcrpy = " *"
1212
1313[packages ]
14- twilio = " ==6.54.0 "
14+ aiohttp = " * "
1515signalwire = {editable = true ,path = " ." }
16- aiohttp = " 3.9.5"
16+ six = " *"
17+ twilio = " >=7.0.0,<7.6.0"
1718
1819[requires ]
You can’t perform that action at this time.
0 commit comments