Skip to content

Commit

Permalink
Allow python 3.7 installs
Browse files Browse the repository at this point in the history
  • Loading branch information
krzentner committed Sep 24, 2023
1 parent ddec6d6 commit 8c247d7
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 = "[email protected]" }
Expand All @@ -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",
Expand Down Expand Up @@ -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"]
Expand Down

0 comments on commit 8c247d7

Please sign in to comment.