From 9114f0a0aa0a3e318e3ae6ab7fbea9eae030a4db Mon Sep 17 00:00:00 2001 From: CJ Green <44074998+okaycj@users.noreply.github.com> Date: Tue, 22 Oct 2024 14:41:24 -0400 Subject: [PATCH] readthedocs doesn't support 3.13. Rollback to 3.12 (#82) --- .readthedocs.yml | 2 +- makefile | 2 +- poetry.lock | 4 ++-- pyproject.toml | 3 +-- 4 files changed, 5 insertions(+), 6 deletions(-) diff --git a/.readthedocs.yml b/.readthedocs.yml index 95fe147..2dbb03a 100644 --- a/.readthedocs.yml +++ b/.readthedocs.yml @@ -8,7 +8,7 @@ version: 2 build: os: "ubuntu-22.04" tools: - python: "3.13" + python: "3.12" jobs: post_create_environment: # Install poetry diff --git a/makefile b/makefile index eb028fd..185bc30 100644 --- a/makefile +++ b/makefile @@ -7,7 +7,7 @@ build: poetry poetry: poetry check poetry self update - poetry env use 3.13 + poetry env use 3.12 poetry update --sync clean: diff --git a/poetry.lock b/poetry.lock index f1c53f7..0b9e44d 100644 --- a/poetry.lock +++ b/poetry.lock @@ -451,5 +451,5 @@ watchmedo = ["PyYAML (>=3.10)"] [metadata] lock-version = "2.0" -python-versions = "^3.13" -content-hash = "564c66ffc0988ea9d23ff63c9590bc143995d139f473dd1e4f98f4cb1a8e72b2" +python-versions = "^3.12" +content-hash = "e27af98fb1de2ddbc32d052b9c1fbd0b843c671b4b33f027377683c92e860975" diff --git a/pyproject.toml b/pyproject.toml index 81fb74a..d6b8797 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -6,11 +6,10 @@ authors = ["Your Name "] readme = "README.md" [tool.poetry.dependencies] -python = "^3.13" +python = "^3.12" mkdocs = "^1.6.0" mkdocs-macros-plugin = "^1.0.5" - [build-system] requires = ["poetry-core"] build-backend = "poetry.core.masonry.api"