From 929d5d9281887e3a744280ebdd489d09596c792a Mon Sep 17 00:00:00 2001 From: Lucas Diedrich Date: Fri, 24 Jan 2025 13:52:38 +0100 Subject: [PATCH 1/2] [Fix] Docs build --- .readthedocs.yaml | 3 +++ pyproject.toml | 3 ++- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/.readthedocs.yaml b/.readthedocs.yaml index 69897c3..dddf9e8 100644 --- a/.readthedocs.yaml +++ b/.readthedocs.yaml @@ -8,6 +8,9 @@ sphinx: configuration: docs/conf.py # disable this for more lenient docs builds fail_on_warning: true +commands: + pre_build: + - sudo apt-get update && sudo apt-get install -y libssh2-1 libssh2-1-dev python: install: - method: pip diff --git a/pyproject.toml b/pyproject.toml index 151ff3a..af853a9 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -14,9 +14,10 @@ maintainers = [ authors = [ { name = "Lucas Diedrich" }, ] -requires-python = ">=3.10" +requires-python = ">=3.9" classifiers = [ "Programming Language :: Python :: 3 :: Only", + "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", From 8b5d91dd38213c6da4e452039f1a116f2eb79ea3 Mon Sep 17 00:00:00 2001 From: Lucas Diedrich Date: Fri, 24 Jan 2025 13:54:09 +0100 Subject: [PATCH 2/2] [Fix] Remove 3.9 support --- pyproject.toml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index af853a9..151ff3a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -14,10 +14,9 @@ maintainers = [ authors = [ { name = "Lucas Diedrich" }, ] -requires-python = ">=3.9" +requires-python = ">=3.10" classifiers = [ "Programming Language :: Python :: 3 :: Only", - "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12",