@@ -410,6 +410,7 @@ ENV \
410410RUN : \
411411 && apt-get update \
412412 && apt-get install -y --no-install-recommends \
413+ build-essential \
413414 curl \
414415 ca-certificates \
415416 && apt-get clean \
@@ -475,6 +476,7 @@ ENV \
475476RUN : \
476477 && apt-get update \
477478 && apt-get install -y --no-install-recommends \
479+ build-essential \
478480 curl \
479481 ca-certificates \
480482 software-properties-common \
@@ -550,11 +552,13 @@ ENV \
550552RUN : \
551553 && apt-get update \
552554 && apt-get install -y --no-install-recommends \
555+ build-essential \
553556 software-properties-common \
554557 && add-apt-repository ppa:deadsnakes/ppa \
555558 && apt-get update \
556559 && apt-get install -y --no-install-recommends \
557560 python{python_version} \
561+ python{python_version}-dev \
558562 python{python_version}-venv \
559563 && apt-get clean \
560564 && rm -rf /var/lib/apt/lists/*
@@ -714,6 +718,7 @@ RUN : \
714718 && apt-get update \
715719 && apt-get install -y --no-install-recommends \
716720 python{python_version} \
721+ python{python_version}-dev \
717722 python{python_version}-venv \
718723 && apt-get clean \
719724 && rm -rf /var/lib/apt/lists/*
@@ -896,16 +901,17 @@ mod tests {
896901 copyright_year : Some ( "2023" . to_string ( ) ) ,
897902 version : "0.1.0" . to_string ( ) ,
898903 python_version : "3.11" . to_string ( ) ,
899- min_python_version : "3.9 " . to_string ( ) ,
904+ min_python_version : "3.10 " . to_string ( ) ,
900905 project_manager : ProjectManager :: Poetry ,
901906 pyo3_python_manager : Some ( Pyo3PythonManager :: Uv ) ,
902907 is_application : true ,
903908 is_async_project : false ,
904909 github_actions_python_test_versions : vec ! [
905- "3.9" . to_string( ) ,
906910 "3.10" . to_string( ) ,
907911 "3.11" . to_string( ) ,
908912 "3.12" . to_string( ) ,
913+ "3.13" . to_string( ) ,
914+ "3.14" . to_string( ) ,
909915 ] ,
910916 max_line_length : 100 ,
911917 use_dependabot : true ,
0 commit comments