Skip to content

Commit

Permalink
go back to <4 as the python version upper limit (#19080)
Browse files Browse the repository at this point in the history
  • Loading branch information
altendky authored Jan 10, 2025
1 parent 8ca6fbd commit 37deeaf
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions poetry.lock
Original file line number Diff line number Diff line change
Expand Up @@ -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"
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"

0 comments on commit 37deeaf

Please sign in to comment.