From 63938f595300c81f0181fbc0d20a333ff9a9db4b Mon Sep 17 00:00:00 2001 From: Siddhant Sadangi Date: Mon, 30 Sep 2024 12:09:43 +0530 Subject: [PATCH] chore: Dropped py3.7 support --- .github/neptune_client_pyproject.toml | 4 ++-- pyproject.toml | 5 ++--- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/.github/neptune_client_pyproject.toml b/.github/neptune_client_pyproject.toml index 67dd813c2..45c9fbe8f 100644 --- a/.github/neptune_client_pyproject.toml +++ b/.github/neptune_client_pyproject.toml @@ -9,7 +9,7 @@ style = "semver" pattern = "default-unprefixed" [tool.poetry.dependencies] -python = "^3.7" +python = "^3.8" # Python lack of functionalities from future versions importlib-metadata = { version = "*", python = "<3.8" } @@ -42,7 +42,7 @@ pandas = "*" # Additional integrations kedro-neptune = { version = "*", optional = true, python = "<3.11" } -neptune-detectron2 = { version = "*", optional = true, python = ">=3.7"} +neptune-detectron2 = { version = "*", optional = true, python = ">=3.8"} neptune-fastai = { version = "*", optional = true } neptune-lightgbm = { version = "*", optional = true } pytorch-lightning = { version = "*", optional = true } diff --git a/pyproject.toml b/pyproject.toml index 6c62ebbc1..c2da0ff4e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -9,10 +9,9 @@ style = "semver" pattern = "default-unprefixed" [tool.poetry.dependencies] -python = "^3.7" +python = "^3.8" # Python lack of functionalities from future versions -importlib-metadata = { version = "*", python = "<3.8" } typing-extensions = ">=3.10.0" # Missing compatibility layer between Python 2 and Python 3 @@ -43,7 +42,7 @@ pandas = "*" # Additional integrations kedro-neptune = { version = "*", optional = true, python = ">=3.9,<3.12" } -neptune-detectron2 = { version = "*", optional = true, python = ">=3.7"} +neptune-detectron2 = { version = "*", optional = true, python = ">=3.8"} neptune-fastai = { version = "*", optional = true } neptune-lightgbm = { version = "*", optional = true } pytorch-lightning = { version = "*", optional = true }