From 822a85e389cd8d5a9732d953d3c088a9a20ac4ad Mon Sep 17 00:00:00 2001 From: Derek Visch Date: Wed, 11 Oct 2023 16:56:41 -0400 Subject: [PATCH 1/3] 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" %} From 220d4ad2ba53a43f987d0592bbb81e5bda0b583a Mon Sep 17 00:00:00 2001 From: Derek Visch Date: Wed, 11 Oct 2023 19:32:51 -0400 Subject: [PATCH 2/3] Update cookiecutter/mapper-template/{{cookiecutter.mapper_id}}/pyproject.toml MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Edgar Ramírez Mondragón --- .../mapper-template/{{cookiecutter.mapper_id}}/pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cookiecutter/mapper-template/{{cookiecutter.mapper_id}}/pyproject.toml b/cookiecutter/mapper-template/{{cookiecutter.mapper_id}}/pyproject.toml index bcc3df6d5..ae502dec8 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.8.1,<4" +python = ">=3.8,<4" singer-sdk = { version="~=0.33.0b2" } fs-s3fs = { version = "~=1.1.1", optional = true } From 13798094976f4a80b1946296d18a11b1ea0d6b7e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Edgar=20Ram=C3=ADrez=20Mondrag=C3=B3n?= Date: Wed, 11 Oct 2023 17:55:14 -0600 Subject: [PATCH 3/3] Update ranges --- .../tap-template/{{cookiecutter.tap_id}}/pyproject.toml | 2 +- .../target-template/{{cookiecutter.target_id}}/pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/cookiecutter/tap-template/{{cookiecutter.tap_id}}/pyproject.toml b/cookiecutter/tap-template/{{cookiecutter.tap_id}}/pyproject.toml index e61e1f0ec..3ff0c0541 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.8.1,<4" +python = ">=3.8,<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 8d6f52134..065bd15cc 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.8.1,<4" +python = ">=3.8,<4" singer-sdk = { version="~=0.33.0b2" } fs-s3fs = { version = "~=1.1.1", optional = true } {%- if cookiecutter.serialization_method != "SQL" %}