From 11e1b418b304fae2b5463eaef415c377d4a873b6 Mon Sep 17 00:00:00 2001 From: Peter van Tol Date: Wed, 4 Jan 2023 22:09:41 +0100 Subject: [PATCH] Support python 3.7 --- pyproject.toml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index e1df8f6..dda38c6 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "litexcnc" -version = "0.9.0a3" +version = "0.9.0a4" description = "Generic CNC firmware and driver for FPGA cards which are supported by LiteX" authors = ["Peter van Tol "] license = "GPL-3.0-or-later" @@ -27,6 +27,7 @@ classifiers = [ "Operating System :: POSIX :: Linux", "Programming Language :: Other", "Programming Language :: Python :: 3 :: Only", + "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", @@ -35,7 +36,7 @@ classifiers = [ ] [tool.poetry.dependencies] -python = "^3.8" +python = "^3.7" packaging = "^21.3" pydantic = "^1.10.2" requests = {version="^2.28.1", optional = true}