diff --git a/.github/workflows/poetry.yml b/.github/workflows/poetry.yml index 65be972..0989b26 100644 --- a/.github/workflows/poetry.yml +++ b/.github/workflows/poetry.yml @@ -33,7 +33,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: [ "3.11", "3.12" ] + python-version: [ "3.10", "3.11", "3.12" ] poetry-version: [ "1.8.3" ] os: [ ubuntu-22.04, macos-12, windows-2022 ] runs-on: ${{ matrix.os }} @@ -53,7 +53,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: [ "3.11", "3.12" ] + python-version: [ "3.10", "3.11", "3.12" ] poetry-version: [ "1.8.3" ] os: [ ubuntu-22.04 ] runs-on: ${{ matrix.os }} diff --git a/pyproject.toml b/pyproject.toml index 6e8886e..c7faa59 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -28,7 +28,7 @@ license = "MIT" readme = "README.md" [tool.poetry.dependencies] -python = "^3.11 || ^3.12" +python = "^3.10 || ^3.11 || ^3.12" sr-data = { path = "./sr-data" } sr-train = { path = "./sr-train" } sr-detector = { path = "./sr-detector" } diff --git a/sr-data/pyproject.toml b/sr-data/pyproject.toml index 024fd26..87b7cce 100644 --- a/sr-data/pyproject.toml +++ b/sr-data/pyproject.toml @@ -29,7 +29,7 @@ readme = "README.md" packages = [{include = "sr_data", from = "src"}] [tool.poetry.dependencies] -python = "^3.11 || ^3.12" +python = "^3.10 || ^3.11 || ^3.12" [tool.poetry.scripts] sr-data = "sr_data.all:main" diff --git a/sr-detector/pyproject.toml b/sr-detector/pyproject.toml index ce5ae8f..7430aef 100644 --- a/sr-detector/pyproject.toml +++ b/sr-detector/pyproject.toml @@ -28,7 +28,7 @@ license = "MIT" readme = "README.md" [tool.poetry.dependencies] -python = "^3.11 || ^3.12" +python = "^3.10 || ^3.11 || ^3.12" [build-system] requires = ["setuptools", "wheel"] diff --git a/sr-train/pyproject.toml b/sr-train/pyproject.toml index da66633..691faa0 100644 --- a/sr-train/pyproject.toml +++ b/sr-train/pyproject.toml @@ -28,7 +28,7 @@ license = "MIT" readme = "README.md" [tool.poetry.dependencies] -python = "^3.11 || ^3.12" +python = "^3.10 || ^3.11 || ^3.12" [build-system]