diff --git a/.readthedocs.yaml b/.readthedocs.yaml index 9965c06..a6ab77b 100644 --- a/.readthedocs.yaml +++ b/.readthedocs.yaml @@ -8,7 +8,7 @@ version: 2 build: os: ubuntu-22.04 tools: - python: "3.11" + python: "3.10" jobs: post_create_environment: # Install poetry diff --git a/.riahub/workflows/build-project.yaml b/.riahub/workflows/build-project.yaml index 2cbd258..1651656 100644 --- a/.riahub/workflows/build-project.yaml +++ b/.riahub/workflows/build-project.yaml @@ -11,7 +11,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: [ '3.11', '3.12' ] + python-version: [ '3.10', '3.11', '3.12' ] name: Build Project steps: diff --git a/.riahub/workflows/tox.yaml b/.riahub/workflows/tox.yaml index fc31def..84b0f6b 100644 --- a/.riahub/workflows/tox.yaml +++ b/.riahub/workflows/tox.yaml @@ -11,7 +11,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ['3.11', '3.12'] + python-version: ['3.10', '3.11', '3.12'] name: Test with tox steps: diff --git a/README.md b/README.md index 30d5c32..d499a75 100644 --- a/README.md +++ b/README.md @@ -26,7 +26,7 @@ - Python Version + Python Version

diff --git a/pyproject.toml b/pyproject.toml index 1acd4f0..48a9e1c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ version = "0.1.5" description = "An open-source version of the RIA Toolkit, including the fundamental tools to get started developing, testing, and deploying radio intelligence applications" license = { text = "AGPL-3.0-only" } readme = "README.md" -requires-python = ">=3.11" +requires-python = ">=3.10" authors = [ { name = "Qoherent Inc.", email = "info@qoherent.ai" }, ] @@ -128,7 +128,7 @@ onnxruntime = {version = ">=1.17,<2.0", python = ">=3.11"} [tool.black] line-length = 119 -target-version = ["py311"] +target-version = ["py310"] exclude = ''' /( \.git diff --git a/tox.ini b/tox.ini index f7a3827..107b46b 100644 --- a/tox.ini +++ b/tox.ini @@ -1,6 +1,6 @@ [tox] isolated_build = true -envlist = py311, py312, lint +envlist = py310, py311, py312, lint skipsdist = true [testenv] @@ -30,6 +30,6 @@ per-file-ignores = __init__.py:F401 [gh-actions] python = - 3.11: py311, lint + 3.10: py310, lint 3.11: py311 3.12: py312