From 822a85e389cd8d5a9732d953d3c088a9a20ac4ad Mon Sep 17 00:00:00 2001 From: Derek Visch Date: Wed, 11 Oct 2023 16:56:41 -0400 Subject: [PATCH] Drop python3.7 support in cookeicutters --- .../mapper-template/{{cookiecutter.mapper_id}}/pyproject.toml | 2 +- .../tap-template/{{cookiecutter.tap_id}}/pyproject.toml | 2 +- .../target-template/{{cookiecutter.target_id}}/pyproject.toml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/cookiecutter/mapper-template/{{cookiecutter.mapper_id}}/pyproject.toml b/cookiecutter/mapper-template/{{cookiecutter.mapper_id}}/pyproject.toml index bdf52229c..bcc3df6d5 100644 --- a/cookiecutter/mapper-template/{{cookiecutter.mapper_id}}/pyproject.toml +++ b/cookiecutter/mapper-template/{{cookiecutter.mapper_id}}/pyproject.toml @@ -21,7 +21,7 @@ packages = [ {%- endif %} [tool.poetry.dependencies] -python = ">=3.7.1,<4" +python = ">=3.8.1,<4" singer-sdk = { version="~=0.33.0b2" } fs-s3fs = { version = "~=1.1.1", optional = true } diff --git a/cookiecutter/tap-template/{{cookiecutter.tap_id}}/pyproject.toml b/cookiecutter/tap-template/{{cookiecutter.tap_id}}/pyproject.toml index 202ccb8d5..e61e1f0ec 100644 --- a/cookiecutter/tap-template/{{cookiecutter.tap_id}}/pyproject.toml +++ b/cookiecutter/tap-template/{{cookiecutter.tap_id}}/pyproject.toml @@ -20,7 +20,7 @@ packages = [ {%- endif %} [tool.poetry.dependencies] -python = ">=3.7.1,<4" +python = ">=3.8.1,<4" singer-sdk = { version="~=0.33.0b2" } fs-s3fs = { version = "~=1.1.1", optional = true } {%- if cookiecutter.stream_type in ["REST", "GraphQL"] %} diff --git a/cookiecutter/target-template/{{cookiecutter.target_id}}/pyproject.toml b/cookiecutter/target-template/{{cookiecutter.target_id}}/pyproject.toml index e7195baeb..8d6f52134 100644 --- a/cookiecutter/target-template/{{cookiecutter.target_id}}/pyproject.toml +++ b/cookiecutter/target-template/{{cookiecutter.target_id}}/pyproject.toml @@ -20,7 +20,7 @@ packages = [ {%- endif %} [tool.poetry.dependencies] -python = ">=3.7.1,<4" +python = ">=3.8.1,<4" singer-sdk = { version="~=0.33.0b2" } fs-s3fs = { version = "~=1.1.1", optional = true } {%- if cookiecutter.serialization_method != "SQL" %}