From 37deeaf3e60e0426ae28451b595fcce5f2f3330c Mon Sep 17 00:00:00 2001 From: Kyle Altendorf Date: Fri, 10 Jan 2025 12:20:27 -0500 Subject: [PATCH] go back to <4 as the python version upper limit (#19080) --- poetry.lock | 4 ++-- pyproject.toml | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/poetry.lock b/poetry.lock index a64305851eaf..057c5ca3ac94 100644 --- a/poetry.lock +++ b/poetry.lock @@ -3335,5 +3335,5 @@ upnp = ["miniupnpc"] [metadata] lock-version = "2.0" -python-versions = ">=3.9, <3.13" -content-hash = "0fef07d7f55098ce5989da745625f27d69147dafc4188c4bbf09fe5079c97387" +python-versions = ">=3.9, <4" +content-hash = "78821e547fe0580a1c646c3e8f5329ae5b6f7190da85127869e2ccd1030830f9" diff --git a/pyproject.toml b/pyproject.toml index 9fce909fbc7f..23f3e2752a76 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -37,7 +37,7 @@ priority = "supplemental" "Changelog" = "https://github.com/Chia-Network/chia-blockchain/blob/main/CHANGELOG.md" [tool.poetry.dependencies] -python = ">=3.9, <3.13" +python = ">=3.9, <4" aiofiles = ">=24.1.0" # Async IO for files aiohttp = ">=3.10.4" # HTTP server for full node rpc aiosqlite = ">=0.20.0" # asyncio wrapper for sqlite, to store blocks @@ -84,7 +84,7 @@ diff-cover = { version = ">=9.2.0", optional = true } mypy = { version = ">=1.11.1", optional = true } pre-commit = { version = ">=3.7.1", optional = true } py3createtorrent = { version = ">=1.2.1", optional = true } -pyinstaller = { version = ">=6.9.0", optional = true } +pyinstaller = { version = ">=6.9.0", python = "<3.13", optional = true } pytest = { version = ">=8.3.3", optional = true } pytest-cov = { version = ">=5.0.0", optional = true } pytest-mock = { version = ">=3.14.0", optional = true } @@ -145,4 +145,4 @@ build-backend = "poetry_dynamic_versioning.backend" # duplicating until poetry v2, then revisit https://github.com/Chia-Network/chia-blockchain/pull/18797 name = "chia-blockchain" # This has to match the poetry python entry above -requires-python = ">=3.9, <3.13" +requires-python = ">=3.9, <4"