From 8c247d74e446e7cc488274b92af7ccf0a1b5e0f2 Mon Sep 17 00:00:00 2001 From: "K.R. Zentner" Date: Sat, 23 Sep 2023 18:17:22 -0700 Subject: [PATCH] Allow python 3.7 installs --- pyproject.toml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index ec43c253e..07a5593bf 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -3,7 +3,7 @@ name = "language_world" version = "0.1.0-dev" description = "A robotics and language benchmark" readme = "README.md" -requires-python = ">=3.8" +requires-python = ">=3.7" license = {file = "LICENSE"} authors = [ {name = "K.R. Zentner", email = "krzentner@gmail.com" } @@ -17,6 +17,7 @@ classifiers = [ "License :: OSI Approved :: MIT License", "Programming Language :: Python :: 3", + "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", @@ -48,7 +49,7 @@ build-backend = "setuptools.build_meta" # Below is poetry setup for developing this package [tool.poetry.dependencies] -python = "^3.8" +python = "^3.7" [tool.pyright] include = ["src"]