File tree Expand file tree Collapse file tree 4 files changed +7
-3
lines changed
Expand file tree Collapse file tree 4 files changed +7
-3
lines changed Original file line number Diff line number Diff line change 1+ from __future__ import annotations
2+
13from abc import ABC , abstractmethod
24from types import ModuleType
35
Original file line number Diff line number Diff line change 11-e /sdk # Mount point for drift SDK
2- Django >= 5.0
2+ Django >= 4.2
33requests >= 2.32.5
44gunicorn >= 22.0.0
55
Original file line number Diff line number Diff line change 11# Python E2E Test Base Image
22#
33# This base image contains:
4- # - Python 3.12
4+ # - Python 3.9 (minimum supported version)
55# - Tusk CLI (for running replay tests)
66# - System utilities (curl, postgresql-client)
77#
88# Build this image before running e2e tests:
99# docker build -t python-e2e-base:latest -f drift/instrumentation/e2e-common/Dockerfile.base .
1010
11- FROM python:3.12 -slim
11+ FROM python:3.9 -slim
1212
1313# Install system dependencies
1414RUN apt-get update && apt-get install -y --no-install-recommends \
Original file line number Diff line number Diff line change 77customize only the setup phase.
88"""
99
10+ from __future__ import annotations
11+
1012import json
1113import os
1214import signal
You can’t perform that action at this time.
0 commit comments