From 658ac02158274da2832dcdbbd847f0124d56b28c Mon Sep 17 00:00:00 2001 From: maclandrol Date: Tue, 19 Dec 2023 12:17:18 -0500 Subject: [PATCH] drop support for python 3.8 --- env.yml | 2 +- pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/env.yml b/env.yml index b0ade97..a53eba7 100644 --- a/env.yml +++ b/env.yml @@ -3,7 +3,7 @@ channels: - dglteam dependencies: - - python >=3.8 + - python >3.8 - pip - tqdm - pyyaml diff --git a/pyproject.toml b/pyproject.toml index 8770ba6..5eda4a4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -9,7 +9,7 @@ dynamic = ["version"] authors = [{ name = "Emmanuel Noutahi", email = "emmanuel.noutahi@hotmail.ca" }] readme = "README.md" license = { text = "Apache" } -requires-python = ">=3.8" +requires-python = ">3.8" classifiers = [ "Development Status :: 5 - Production/Stable", "Intended Audience :: Developers",