From 6761453ba8357e9001d91251c34bf619b2affcc2 Mon Sep 17 00:00:00 2001 From: Phillip Cloud <417981+cpcloud@users.noreply.github.com> Date: Mon, 23 Oct 2023 04:03:04 -0400 Subject: [PATCH] chore: fix python lower bound for git-deps-pinned --- tests/git-deps-pinned/pyproject.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/git-deps-pinned/pyproject.toml b/tests/git-deps-pinned/pyproject.toml index f7baaa7..1278ad7 100644 --- a/tests/git-deps-pinned/pyproject.toml +++ b/tests/git-deps-pinned/pyproject.toml @@ -5,9 +5,9 @@ description = "poetry2nix test" authors = ["Your Name "] [tool.poetry.dependencies] -python = "^3.6" +python = "^3.7" alembic = { git = "https://github.com/sqlalchemy/alembic.git", tag = "rel_1_3_1" } -colorama = {git = "https://github.com/tartley/colorama.git", rev = "4321bbfda9aa190acdad05eb901d3b59439f0ec9" } +colorama = { git = "https://github.com/tartley/colorama.git", rev = "4321bbfda9aa190acdad05eb901d3b59439f0ec9" } s3transfer = { git = "https://github.com/boto/s3transfer.git", branch = "develop" } [build-system]