Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

go back to <4 as the python version upper limit #19080

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions poetry.lock
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# This file is automatically @generated by Poetry 1.8.5 and should not be changed by hand.
# This file is automatically @generated by Poetry 1.8.3 and should not be changed by hand.

[[package]]
name = "aiofiles"
Expand Down Expand Up @@ -3314,5 +3314,5 @@ upnp = ["miniupnpc"]

[metadata]
lock-version = "2.0"
python-versions = ">=3.9, <3.13"
content-hash = "f0cb06972cebfa76cd55d0016b66bd0e6a79babc88eb9b9b59bb7531d1c4b533"
python-versions = ">=3.9, <4"
content-hash = "123276216288d1b2ad1cf63da94baab03278b6e2566f92f96921c75a2688bbfe"
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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 }
Expand Down Expand Up @@ -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"
Loading